HTC EVO 4G :: Where To Find Kernel Comparison List For Rooted 4GS?
Sep 6, 2010
I just want to make an informed decision after rooting. Sure I may try more than one but I don't know where to start. I'm open to recommendations preferably backed up with reasons. I'm an ubuntu user but I prefer GUI over the terminal. My terminal literacy is almost nonexistent.
View 1 Replies
Nov 21, 2010
I heard this kernel works really well overall with myn's 2.2. Am currently running the baked snacks 6 kernel and am experiencing short battery life. extremely smooth performance wise, but extremely short battery life.
View 1 Replies
View Related
Sep 23, 2010
I was wondering if I can flash Netarchy Toastmod Beta: 4.1.9.1 w/HAVS on this newly released OTA rom from XDA? I don't like how the stock kernel has been acting since I installed it. Would this be ok to do?
View 6 Replies
View Related
Sep 2, 2010
what kernel are you guys running i have tried kings and netarchy just wondering what else. If your not using it on a stock rooted 2.2 then no need to post in here.
View 2 Replies
View Related
Aug 4, 2010
They tell me this will change again when the Droid X and Samsung Galaxy get 2.2 - I wouldn't know. Until then, here's our moment in the sun. Made this using the Quadrant benchmark, free from the Market, using a the stock rooted 2.2 rom and the netarchy-toastmod 3.7.6c kernel with the 30 fps cap lifted. No over-clocking, no hair-on-fire super tweaks, no killing every process to tweak the benchmark - just downloaded and run, the number on the bar says 1165.
EVO-Froyo-fast.png
The Nexus One 2.2 at the top uses the exact same processor (aside from the radio-control circuit) as our EVO. I attribute its higher score to the fact that it's sleeker and not running Sense. I happen to like Sense so I don't care.
View 49 Replies
View Related
Sep 2, 2010
I'm looking to install the BFS Kernel #8 with rooted stock sense 2.2 ROM. Would this work or cause an issue? have anyone try this already? I want to unlock the FPS on the phone.
View 5 Replies
View Related
Nov 25, 2010
Just wondering which kernel - in terms of performance and battery life would be the best to use with teppics rooted stock froyo rom.
I'm currently using this kernel with the sd card read fix and gpu+ fix but I'm wondering if theres something thats better in terms of performance and battery life.
Desire Kernel for Teppic74's ROM - xda-developers
I've heard many good things about richards v5 kernel but I don't want to OC or do anything crazy. I just need the sd card read fix... maybe the gpu+ fix and no OCing as I do want to keep my battery life as is.
View 44 Replies
View Related
Sep 1, 2010
Not sure how to figure out which android project on android.git.kernel.org corresponds to the classes extended in some of the app examples in the SDK such as Activity, Intent, and ContentProvider.
View 1 Replies
View Related
Oct 17, 2010
Trying to implement simple dictionary. I want to make it so while the user is typing in the EditText box the list to scroll automatically to the best match. I don't want it to filter the list. For example if the user types "s" in the EditText I want the first word that s/he sees under the EditText box to be the first word in the dictionary that starts with "s." But the user should still be able to slide up and down and to be able to see the entire list of words. It is basically like a go to functionality. I used ArrayList to store my list of words. The data is in res/raw/data.xml file. Here is my onCreate method
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
wordListView = (ListView)findViewById(R.id.wordList);
myEditText = (EditText)findViewById(R.id.myEditText);
words = new ArrayList<Word>();
arrAdap = new ArrayAdapter<Word>(this, android.R.layout.simple_list_item_1, words);
wordListView.setAdapter(arrAdap); try {
InputStream inSource = getResources().openRawResource(R.raw.data);
DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document doc = builder.parse(inSource, null);
NodeList wordsList = doc.getElementsByTagName("eng-bg");
int length = wordsList.getLength();
for(int i = 0; i<length; i++) {
Element entry = (Element)wordsList.item(i);
Element eng = (Element)entry.getElementsByTagName("english").item(0);
Element bul = (Element)entry.getElementsByTagName("bulgarian").item(0);
Element id = (Element)entry.getElementsByTagName("ID").item(0);
String english = eng.getFirstChild().getNodeValue();
String bulgarian = bul.getFirstChild().getNodeValue();
int wordId = Integer.parseInt(id.getFirstChild().getNodeValue());
Word word = new Word(bulgarian, english, wordId);
addNewWord(word);
} catch (ParserConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}wordListView.setOnItemClickListener(new OnItemClickListener(){
public void onItemClick(AdapterView<?> parent, View view, int pos, long id) {
selectedWord = words.get(pos);
showDialog(TRANS_DIALOG);
myEditText.setText(selectedWord.getEnglish());
myEditText.addTextChangedListener(new TextWatcher(){
public void onTextChanged(CharSequence s, int start, int before, int count) {
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
View 1 Replies
View Related
Sep 29, 2010
I have downloaded the Fresh 3.3.0.1 to my desktop and have no clue what to do next. Every thread I follow leads to discussions of folks doing it, having issues, etc but I never actually find instructions on how to do it?
View 5 Replies
View Related
Aug 8, 2010
Just took the plunge and rooted with xtrROM3. Wish I had done it long ago but now cannot
find my gmail in apps or in my sd card. Calendar syncs as do contacts but no gmail shortcut or app on phone or in market.
View 5 Replies
View Related
Oct 29, 2010
So I've searched "Contacts list iphone" and what not but wasn't able to find anything. And I might get crucified for this but The one thing that the iphone did that I really liked was how you can easily scroll down to the contact you want by tapping the letter you want to scroll down to on the right hand side of the contact list. I have a Droid X and I LOATHE the way it works (I have to scroll first, then move the scrollbug down to where I want it). Is there an app that will show the contact list a la iOS where you have the letters on the righthand side and you just tap on the letter you want to scroll down to?
View 3 Replies
View Related
Sep 24, 2010
Removed all my bloat I wanted but the 3G one. What is it called?
View 2 Replies
View Related
Sep 30, 2010
I have installed usb driver, selected the android device's debugging mode but i can't access the android device in the target android device's list.I am using htc wildfire as my android device. i chose the connection type of my device to my pc as Disk Drive.
View 1 Replies
View Related
Oct 1, 2008
I find the Android Developer Challenge competition but I'm struggling to find a full list of applications for Android that is viewable on the Internet (I don't have a G1 yet). Can anyone point me in the right direction?
View 7 Replies
View Related
Apr 28, 2010
I want to translate my app into all available markets. code...
However, look at http://developer.android.com/reference/java/util/Locale.html
it lacks : polish pl_PL and nl_NL
Now what I'm doing is creating values-fr values-es directories. But my phone only has English and Spanish locales.
Here's two things that would help:
1. A definitive list of all locale suffixes that are allowable as the values-?? directory names 2. A way to add more locales to my phone.
View 3 Replies
View Related
Oct 11, 2013
I have android 4.1.2 cyanogen based on acer iconia a200. I know I have camera app in the system as I have the camera app shortcut on the unlock screen and I can launch the camera from there. But I dont have camera in installed apps (in app drawer). I have tried installing the camera apk (install was successful) but still I dont see it in the search.
View 3 Replies
View Related
Jun 30, 2010
Programmability i want monitor IP ever connected to my Adnroid device. My initial thought is i can write a background service which will run tcpdump command and forward its output to inputStream. By putting any regular expression i can retrieve list of connected IP to my device.I think that would be bulky to continually run command like tcpdump.
View 1 Replies
View Related
Aug 10, 2010
I'm trying to get the ListView by using the findViewById function, yet I'm unsure what I am trying to find or what to put. R.id.list does not work.
View 1 Replies
View Related
Aug 26, 2010
So I downloaded Noled on my Vibrant, but it doesn't seem to be working and I can't find the app on my apps list. Does it need to be activated or something that I am missing?
View 14 Replies
View Related
Sep 26, 2010
Where can I find a list of files that can, or shouldn't be, deleted w/ titanium backup?
View 2 Replies
View Related
May 16, 2010
I found out that on Android contacts, at least HTC Sense stores Facebook ID with the following mimetype: vnd.android.cursor.item/vnd.facebook.profile this differs from their mimetype format such as com.htc.socialnetwork.facebook/smallavatar
I am wondering where do I find a list of officially supported mimetypes for Android?
View 1 Replies
View Related
Oct 18, 2010
Where can I find a list of sent messages?
View 3 Replies
View Related
Nov 19, 2013
I am using HTC Desire S, upgraded to RUU version Ice Cream Sandwich 4.0.4. This RUU version came straight from HTCDev. This RUU version doesn't support inverted mode.
Because of this difficulty, I am unable to search and find web browsers that support inverted mode. Google search will always come up with tutorials on how to turn on inverted mode in the ICS browser, which this RUU version doesn't support.
Where can I find a list of browsers that support Inverted Mode/Night Mode?I do know Dolphin Browser dropped support for Night Mode.
View 1 Replies
View Related
Sep 21, 2012
Have samsung galaxy 3 gt-i9300 running aokp jellybean 4.1.1 (phone is rooted), am using myphoneexplorer to sync data from outlook, all is working except i cannot find tasks list on the phone, calendar and contacts are fine. As in myphone explorer i can see the tasks and they should be on phone as well ?
GT-I9300
View 1 Replies
View Related
Nov 14, 2010
Woke up with update message, ran update. Phone completely wiped out of ALL data. Was very upset Does anyone know how to find a list of all previously loaded market place apps? This is a total pain in the butt.
View 19 Replies
View Related
Nov 18, 2010
How to find checked events in choice mode multiple.
I am using ontemselected method it is not working for me
CODE:...............
View 1 Replies
View Related
Apr 11, 2012
How to find list of SYSTEM LOCALES (language list that we see in settings) from ROM file system image/file tree (assuming that /system can be mounted as folder)? Which files/folders have this information?
View 5 Replies
View Related
Oct 31, 2010
I am building a android aplication which will be consuming a json file from the internet. This json file contains a list of news from a particular website. Each json object contains information such like title, summary, descripition and web links for the news thumbnail and the original image.
I will be displaying in a listview three information: the news thumbnail, the title and the summary. Here resides my problem. I dont want to load all thumbnails from the internet if they wont be displayed. What I am trying to say is that why download a thumbnail from the 30th news if the user wont scroll down the image. So, i will, initially only download the thumnails from those news that are being displayed in the screen and when the user scrolls down to see more news, as soon as the list item appers to the screen i want to download the image and then display.
Is there a way to achieve this? Is it possible to find out if the list item is on the screen? I have been searching all over the internet for a solution for this but i am running out of ideas.
View 1 Replies
View Related
Nov 18, 2010
Does anybody know if the new desktop kernel patch written by Mike Galbraith can be applied or modified to be used in the android kernel?
Tiny Linux Kernel Patch Delivers Huge Speed Boost - PCWorld Business Center
I haven't messed around with android kernels yet, but I have applied it to my current Ubuntu 10.10 system and you can see the difference. Its like night & day!
View 2 Replies
View Related