HTC EVO 4G :: Ever Changing Android Apps List
Jun 29, 2010
First let me say I think I'm obsessed with my EVO maybe more so about the Android OS in general. Love reading this message board, XDA, Android Guys and all the other sites to learn more every day.However, one thing I've found is its really hard to stay on top of all the apps that are being released on what seems like a daily basis. What's the best way to find the GOOD apps that are being released? I know there is a "just in" section but most of those are junk. Should I rely on Android Guys or sites like this to simply post them or is there a website that tracks this kind of stuff.I used to be a fanboy but now I'm a droid user for life. Really cool to feel apart of a community and seeing dev's on sites like XDA interacting with normal people rather than the old feeling I had with my Iphone where there was "them" then there was "us" and all they wanted to do was profit off us.
View 1 Replies
May 31, 2010
Is there an application that let's me change application names in the "all programs" list?I was recommended "Folder organizer" but it wouldn't change the names in the "all programs" list.BTW, I can't buy paid apps from the android market.
View 3 Replies
View Related
Mar 10, 2010
I have a background color applied to a ListView but everytime the list is scrolled the background color changes back to the system default (black). When the scrolling stops the color goes back to @color/window_background.The style is applied in AndroidManifest.xml:<activity android:name=".event.EventList" android:theme="@style/CKButtons"></activity> and my ListView looks like this: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
><ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/android:list"/>
<TextView
android:id="@+id/android:empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/eventlist_no_items"/>
</LinearLayout>How can I prevent this from happening?
View 2 Replies
View Related
Jul 21, 2010
can anyone help me of changing the background color of a list view?. i am new to android and i really need to know this.
View 2 Replies
View Related
Jan 28, 2010
This is my first app so finding my way around bit by bit and have been experimenting a little and would like to change the background colour to a colour from a list.Currently it loads a white background specified in strings.xml <color name="all_white">#FFFFFF</color> This is used in main.xml:android: background=" @color/all _white"Ideally I would like to change the colour in OnCreate() to a colour of my choice. I have tried setBackground Drawable but it doesnt seem to work?This is my code:public class TestActivity extends Activity double dimValPercent = 100; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super. onCreate (savedInstance State); setContentView(R.layout.main); SetDimLevel(dimValPercent);SetBackground(); return;}public void SetBackground(){getWindow().setBackgroundDrawable( new ColorDrawable (color.all_blue) );
View 1 Replies
View Related
May 25, 2010
While I tested my application on an Android Device turning my Android phone from landscape to portrait, results in all the list items in my list view are disappearing.
View 2 Replies
View Related
May 31, 2010
I would like to write a rather simple content application which displays a list of textual items (along with a small pic).I have a standard menu in which each menu item represents a different category of textual items (news, sports, leisure etc.).Pressing a menu item will display a list of textual items of this category.Now, having a separate ListActivity for each category seems like an overkill (or does it?)
Naturally, it makes much more sense to use one ListActivity and replace the data of its adapter when each category is loaded.My concern is when "back" is pressed. The adapter is loaded with items of the current category and now I need to display list of the previous category (and enable clicking on list items too)
Since I have only one activity - I thought of backup and load mechanism in onPause() and onResume() functions as well as making some distinction whether these function are invoked as a result of a "new" event (menu item selected) or by a "back" press.This seems very cumbersome for such a trivial usage.Am I missing something here?
View 1 Replies
View Related
Apr 17, 2009
Im trying to change background color when an item is selected. Something like using a color selector, but actually it crashes. I've created a list_selector.xml inside /res/color/.<?xml version="1.0" encoding="UTF-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"><item android:state_focused="true" android:color ="@ color/ plain_yellow"/><item android:state_pressed="true" android:state_enabled="false" android:color ="@color /plain _yellow" /><item android:state_enabled="false" android:color="@color/ plain_yellow" /><item android: state_active="true" android:color="@color/ plain_yellow" /><item android:color="@android: color/ transparent" /></selector> plain_yellow is a color i've defined in /res/values. I've tried to assign that selector programatically and using the xml, but the app crashes. Am i doing something wrong?
View 2 Replies
View Related
Jun 1, 2009
I have a ListView containing a few different type of items, all having their own background image and font color. In my first implementation I implemented each type of item as its own layout with the background image etc defined in XML (and implemented Adapter.getView() so that it only reuses convertView if it's of the correct type). This works fine but the performance is not that great while scrolling since I'm inflating quite a few Views due to convertView mismatches, so instead I tried using the same layout for all items (to benefit fully from convertView reuse) and changing the background image and font size in runtime. I even keep the three background Drawables I need as members to save time decoding them from a resource for each item, and call View.setBackgroundDrawable() from Adapter.getView(). The problem is, sometimes the 9-patch is not correctly wrapped around the content of the list item when using this approach. While scrolling it usually looks correct but when the scrolling stops, or sometimes when I just tap anywhere on the list, the background 9-patch of some large items starts flickering and is either cropped or resized to its original PNG size rather than stretched to wrap the content.
First of all, I suspect this is a bug? Any ideas why this happens? Could it be that the View is not always measured to reflect the changed content when the 9-patch is applied? I have tried adding an extra call to View.invalidate() but it doesn't solve the problem. Second, does this approach sound reasonable at all, or how should I go about to optimize this scenario?
View 4 Replies
View Related
Feb 28, 2010
Is there an app out there that will make the contact list/phonebook come up like the nexus one on the eris? I like the iphone look of it, and it doesn't have the small little Rolodex icon you have to click to call other numbers for the same person.
View 1 Replies
View Related
Mar 7, 2012
Is there a way to remove apps from My Android Apps list, on Android Market / Google Play? I have a few hundred in my list and a few dozen of those are apps I plan to never install again. I'd like to remove them from my list in the Market/Play. I've already uninstalled them from my phone.
View 10 Replies
View Related
May 21, 2010
Is anyone aware of a listing of apps that require Android 2.1 to run (e.g. apps like Google Goggles, etc.)? I've searched the threads here at Android Forums and elsewhere and haven't been able to find such a list or site.
Now that I upgraded to 2.1, I'd like to "see what I've been missing" and take advantage of the new OS.
View 3 Replies
View Related
Aug 2, 2010
I'm a web designer by nature, accustomed to changing resolutions and font sizes, but I'm unsure how to design for the Android platform without knowledge of screen sizes, especially when the screen rotates from portrait mode to landscape.
Should I just do generic things that tile, or is there a way to design things of static size?
By this, I mean for the GUI and graphics, not element nodes of the XML.
View 1 Replies
View Related
Jun 14, 2010
I am wanting to change the icons for a lot of my apps on my home screens. I have been looking at BetterCut, Apps Organizer, and Folder Organizer. Now Apps Organizer is free and Folder Organizer has a free trial version, but Better cut is not free not does BetterCut have a free trial version.
Please tell me what you like/dislike about the apps, primarily BetterCut and Folder Organizer (paid).
*How do they run?
*Are there any major bugs?
Is it easy to change the icons for apps on my home screens?
*Is BetterCut really worth $2?
*Is Folder Organizer really worth $1.35?
Are any of these going to meet my needs of wanting to change the icons on my home screens?
*Are the icons dependant on the app that changed them (in other words, if I uninstall BetterCut after changing an icon, will the icon still be what I changed it to, or will it go back to the default icon)?
*If you had $2 and could only choose one of these apps to change the icons on your home screen, which would you choose?
I am going to play around with the two free versions of these apps and see if I like them, but unfortunately, BetterCut is an all or nothing app. I just don't want to feel like I wasted any money because the app ended up not doing what I wanted it to do.
View 2 Replies
View Related
Feb 3, 2010
I want to try a different rom but i also dont want to go through the hassle of finding all my apps in the market again, i was wondering if there was a way to back them up to apks even? or keep them installed for the next rom
View 18 Replies
View Related
Jul 31, 2012
Basically I am looking for something like X-Forwarded-For spoofer so it can add custom ip in the http header for browser. There are such plugins for chrome and firefox but can't find anything for android.
View 1 Replies
View Related
Jul 13, 2012
I bought my wife a 16gb SD Card for her Ray and I would like to transfer the content of the current 8GB card to it. However, I did installed some apps on the SD as the Ray's internal storage is so limited. What should I do to be sure that all the apps will run correctly after the transfer? Should I bring all the apps back to the internal storage, then make the transfer then put them back on the new SD ?
View 1 Replies
View Related
Oct 16, 2010
If I download some apps and then afterwards put a different networks sim card in will the apps still be there?
View 3 Replies
View Related
Jan 5, 2013
If I change over to K-9 mail as my default email client. will the notification bar notify me?
View 1 Replies
View Related
Jan 8, 2014
I have a Gustavo kernel and Beanstalk Rom.
Now I wanto to try another kernel but I have already got my phone working with all the different apps that I like.
Is it possible to just flash the kernel to for example Dorimax and still keep the same Rom with data and apps?
If it not possible, can I then restore a backup of the same Rom and apps and data after the kernel has changed?
View 1 Replies
View Related
Sep 5, 2012
I want to change my google account for some reason, but all my paid app was registered under my current account, so is it possible to transfer all to my new account without paying it again?
View 1 Replies
View Related
Jun 21, 2010
Since I have insalled Froyo (frf50) I have slowly noticed apps starting to receive this feature I do not know of a complete list or even attempted one. As far as I am aware there is no way for the market to auto install to the sd, so unless the developer lets you know in the changelog (which doesn't always happen) its a manual process finding them through the manage applications list. If anyone knows a better way please enlighten me. *** As has been stated getting the App 2 SD or SDMove in the market can quickly identify which applications you can move from your phone to the SD card Here is an important link for those that want to understand how apps are moved (and especially force them to the SDCard in order to save system memory:This list is also for those who are shopping due to low memory.Applications starting with #
View 49 Replies
View Related
Dec 21, 2009
As Canadian customers of Rogers Wireless are now being screwed out of the 1.6 update for our HTC Magic and Dream, and LG Eve phones, we will not be able to run apps that require version 1.6 or above.
We are trying to help Rogers understand why we need this update, as they seem to be having difficulty wrapping their heads around the idea that these are not just phones, but are rather more like little computers.
Since in many cases we can not even see apps in the market place that aren't supported by our phones, it is difficult to provide Rogers with a concise list, so I am hoping everyone in the forums can help me to compile a list of the apps that ONLY work with 1.6 or above.
For example, I know of the following:
- Google Goggles
- Fresh Face (newest version)
View 8 Replies
View Related
Oct 1, 2010
Recently, I had to factory reset my Droid X running Froyo. I had downloaded some nice apps. But, when I restored my data, my apps were gone. Is there a list my downloaded apps stored someplace? Perhaps I missed a setting to do this.
View 2 Replies
View Related
Jan 3, 2013
I am having an issue on my Asus Transformer Prime tablet. I had my account on there and downloaded a bunch of apps and games. My wife signed up for an account and we added that one and removed my account as she has taken over my tablet. LOL. The app/game says there is an update but when we go to the Play Store it will not allow us to update it, it only shows OPEN and UNINSTALL. If I add my account back onto the tablet the option for update is there.
Is there anyway to update the apps/games without my account being on there? I thought about just deleting the game and re-installing it under her account but that would erase all of her progress in the game.
View 1 Replies
View Related
Sep 15, 2013
Any way to change the permissions of individual apps ?
I'm running 4.1.2 on the LG Optimus G Pro.
I can see the permissions by app, but I can't find a way to change them if I don't one of them doing something.
View 4 Replies
View Related
Oct 6, 2010
1st post, I picked up my EVO on Monday after having 3 different models of the iPhone since 2007. I am really loving android and how versatile it is. One thing I can't seem to find so far is a list of everything Google offers in the Market - apps, widgets, etc. Searching "Google, Inc." in the Market will bring a lot of non Google apps in between and it doesn't seem to load Google's apps first. Is their a website that has a definitive list of Google, Inc.'s offerings in the Market?
View 4 Replies
View Related
Feb 3, 2010
Does anyone know if there's a way to retrieve a list of apps currently installed on the phone?Perhaps through an Android service, or system content provider?And once this list is retrieved, is there a way to filter down the list to only apps that have been downloaded via the market? I suppose another way to phrase that last question is:Can my app access the Downloads list that's in the Android Market app?
View 3 Replies
View Related
Jan 27, 2010
This may be Nexus One specific, but I'm looking to replace the apps icons page (the list that scrolls around a virtual cube). It just goes too slow and I'd rather have something that moves one full page (and only one full page) at a time-- maybe something similar to the iPhone. Anyone heard of an app that can do this?
View 2 Replies
View Related
Oct 27, 2008
I was looking at the top 50 Android apps list and found Dyno, a neet accelerometer for the car. I REALLY want this app, but can not find anyplace to download it? Can someone tell my where to find it, or e-mail it to me at asterixjunk (at) covad.net.
View 6 Replies
View Related