[android-developers] Re: listview is getting me mad plase help

2010-01-31 Thread free1000
Just out of curiosity why do you have this in the ListView definition android:isScrollContainer="true" Not saying it has anything to do with your problem,just wondering. The list knows how to scroll without this attribute being set. P On Jan 30, 5:08 pm, David Fire wrote: > hi > i cant press

[android-developers] Re: Book for learning Android

2010-01-28 Thread free1000
Do yourself a favour and get the ebook subscription from Mark Murphy. If you work through the tutorials book you will be coding android apps in double quick time. I've looked at other books, but these are great, and the author responds to questions on his own email list/bulletin board. http://com

[android-developers] Re: Saving the contents of an array

2010-01-21 Thread free1000
One way could be to use StringTokenizer Google for the java.util.StringTokenizer java class. Save your string array by concatenating the contents with eg: a comma to your prefs string Then read the string and use StringTokenizer to split the prefs string using the comma as the token, and load in

[android-developers] Re: Updating sqlite database

2010-01-20 Thread free1000
On Jan 20, 1:11 am, Magic wrote: > I need a little help updating my database. I created an app that has > an embedded database. When you first install the app it creates the > database fine and works great, but when I do an update, change the > database version the app crashes. I looked all over

[android-developers] Re: Multiple instances of included layout, namespacing question.

2010-01-12 Thread free1000
View text1 = row1.findViewById(R.id.text); > LinearLayout row2 = (LinearLayout) findViewById(R.id.row2) > TextView text2 = row2.findViewById(R.id.text); > > > > > > On Tue, Jan 12, 2010 at 11:09 AM, free1000 wrote: > > I've been attempting to use the tag in some la

[android-developers] Multiple instances of included layout, namespacing question.

2010-01-12 Thread free1000
I've been attempting to use the tag in some layouts and it seems that these are of limited use because of the flat namespace of the R.id.x approach. Suppose I have a layout (attribs and xml namespace decl omitted for clarity). component.xml Now include this twice inside a 'parent' view

[android-developers] Re: Apps for Android - are they maintained?

2010-01-11 Thread free1000
Could it be that you need to run this on the appropriate Google API platform rather than an Android API level? Strikes me you may be needing some of the Mapping API for Panoramio (though I' haven't looked at this sample so I am making an educated guess rather than actually knowing what I'm talking