[android-developers] Re: Can't Uninstall

2011-01-08 Thread nextgen
ords"?  Is it that the app label the user > sees is the same?  Hopefully they don't both have the same package name. > > > > > > On Fri, Jan 7, 2011 at 5:59 PM, nextgen wrote: > > OK, and the final answer is ... > > > You are right! > > > It is

[android-developers] Re: Can't Uninstall

2011-01-07 Thread nextgen
the app is > > built > > > into the system image.  There is no other reason I know of for it to be > > > grayed out. > > > > On Tue, Jan 4, 2011 at 1:49 PM, Kumar Bibek > > wrote: > > > > Any information on the devices or OS version? I suspec

[android-developers] Re: Can't Uninstall

2011-01-07 Thread nextgen
hat I find. On Jan 4, 4:47 pm, nextgen wrote: > In the last couple of weeks I have received a handful of emails about > users' inability to uninstall one of our apps.  That app has been in > the market for over 2 months and this is the first I've heard of this > issue.  I

[android-developers] Can't Uninstall

2011-01-04 Thread nextgen
In the last couple of weeks I have received a handful of emails about users' inability to uninstall one of our apps. That app has been in the market for over 2 months and this is the first I've heard of this issue. I responded to the users with uninstall instructions and they say that the app eit

[android-developers] Re: Where are ldpi version of built-in icons

2010-11-22 Thread nextgen
So does this imply that if the developer creates drawables of different densities via scaling and does not do different artwork or "polishing after scaling" in each density, one may as well put only the highest density (now 512x512) in the app and let android do the scaling? On Nov 21, 6:28 pm, Di

[android-developers] Re: horizontal scrolling in GridView control

2010-09-22 Thread nextgen
I'm not 100% sure, but I think it would do only most of it. I need each row to contain 17 individual "cells", each with multiple widgets (like an imageview and a textview). Then I need each one of those 17 "cells", in each of 32 rows, to be clickable, so that I can record some data and change the

[android-developers] Re: horizontal scrolling in GridView control

2010-09-21 Thread nextgen
Count me in as another who has this problem. It's a real disappointment that this cannot be done. But, it seems clear you can't do it. So does anyone have any elegant work-arounds yet? I want to create a grid of 17 columns and 32 rows (an NFL Schedule grid). I was hoping to do it with a GridVi

[android-developers] Re: Loading XML data to array “gives up” if XML is too big

2010-09-16 Thread nextgen
size in advance.  If you don't know the array size you'd use an > ArrayList or some such and convert to an array after all is read. > > (Obviously, with this scheme the file is just a list of your data > records, one per carriage-return-terminated line, with no

[android-developers] Re: Loading XML data to array “gives up” if XML is too big

2010-09-15 Thread nextgen
Correct, I'm using Resources.getStringArray (shown above). Also, I've not yet learned how to do data any other way than XML bundled in the app -- it is on my list to learn not only straight text files, as you suggest, but also using a database, or especially putting this out on the internet somewh

[android-developers] Re: Loading XML data to array “gives up” if XML is too big

2010-09-14 Thread nextgen
9:21 pm, DanH wrote: > And how are you reading these? > > On Sep 14, 8:10 pm, nextgen wrote: > > > > > Here is the line where I load the XML into the Array: > > > TEAM_SCORES = getResources().getStringArray(R.array.TEAM_SCORES) > > > Here is a clip of the

[android-developers] Re: Loading XML data to array “gives up” if XML is too big

2010-09-14 Thread nextgen
Sep 14, 9:04 pm, DanH wrote: > Maybe you could give us a sample of what you're "loading". > > On Sep 14, 7:44 pm, nextgen wrote: > > > > > Thank you both for the replies. Unfortunately you are stretching my > > admittedly thin knowledge, only began in A

[android-developers] Re: Loading XML data to array “gives up” if XML is too big

2010-09-14 Thread nextgen
Thank you both for the replies. Unfortunately you are stretching my admittedly thin knowledge, only began in Android and Java a month ago. I'll look into LogCat. Frank, if you can spare a bit more of your time to explain how to do this at compile time I would be grateful, although I'm sure it's p

[android-developers] Loading XML data to array “gi ves up” if XML is too big

2010-09-14 Thread nextgen
I have in many cases successfully loaded up data into an array from the strings.xml. However an app I'm writing now has a very large amount of data in the XML, much larger than I've had in the past for a single array. When I run the app in the emulator, the intent happens, I see my app's home page

[android-developers] Re: How do I refer to a drawable with a variable

2010-09-14 Thread nextgen
On Sep 14, 11:48 am, DanH wrote: > "R.drawable.Ind" is an integer. > > On Sep 14, 10:24 am, nextgen wrote: > > > > > Thank you for this, it gives me a possible solution.  Unfortunately > > getDrawable will only take an integer as an input, which really > > d

[android-developers] Re: How do I refer to a drawable with a variable

2010-09-14 Thread nextgen
= { > R.drawable.drawable1, > R.drawable.drawable2, > . > . > R.drawable.drawableN, > > } > > These links may help > you..http://developer.android.com/resources/tutorials/views/hello-gridview...http://developer.android.com/resources/tutorials/views/hello-gallery >

[android-developers] How do I refer to a drawable with a variable

2010-09-14 Thread nextgen
I am doing an app related to football. I have a list view that will have various rows representing teams. In my custom array adapter I want to write some code that will present an icon for the team represented by the row. I have a drawable resource for each team (for instance for Indianapolis, I