Re: [android-developers] insane ScrollView problems

2014-10-15 Thread Jim Graham
On Wed, Oct 15, 2014 at 11:31:34AM +0530, Anurag Purwar wrote: change LinearLayout xmlns:android= http://schemas.android.com/apk/res/android; to LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; I had it that way beforehere's the error from Eclipse: error:

[android-developers] Re: insane ScrollView problems

2014-10-15 Thread Nobu Games
I'm not sure if that's just a copy paste error, but you close the LinearLayout tag prematurely. So all its attributes including layout_width just count as unexpected text: LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; *

Re: [android-developers] insane ScrollView problems

2014-10-15 Thread gjs
Hi, Hmm, is your ScrollView height correct ? I usually use something like - ScrollView android:id=@+id/settings_scrollview android:layout_width=fill_parent android:layout_height=wrap_content android:background=#FF00 android:layout_margin=8dip android:scrollbars=vertical - and specify

Re: [android-developers] insane ScrollView problems

2014-10-15 Thread Jim Graham
On Tue, Oct 14, 2014 at 11:31:54PM -0700, gjs wrote: Hi, Hmm, is your ScrollView height correct ? I usually use something like - ScrollView android:id=@+id/settings_scrollview android:layout_width=fill_parent android:layout_height=wrap_content That's what I had, before trying a

[android-developers] Re: insane ScrollView problems

2014-10-15 Thread Jim Graham
On Tue, Oct 14, 2014 at 11:27:11PM -0700, Nobu Games wrote: I'm not sure if that's just a copy paste error, but you close the LinearLayout tag prematurely. So all its attributes including layout_width just count as unexpected text: LinearLayout

Re: [android-developers] insane ScrollView problems

2014-10-15 Thread Jim Graham
On Wed, Oct 15, 2014 at 12:03:28AM -0700, Will Christiansen wrote: So what I think you need to do it follow Nobu Games suggestion about the premature closure. Of course I should...that's how I had it originally. But as I've said, when I do that, Eclipse whines about it not being closed.

[android-developers] Google Maps API on Android 4.4 taking wrong location

2014-10-15 Thread SAndy
I am using the Google Play Location API to locate my destination from my current location. My current location is picked up correctly by Android 4.0 to 4.3 but getting wrong current location in 4.4 device. If there is no fix for this, then they should deprecate the requestLocationUpdates