I have developed an Android app, that has ListView. It is scrolling fine in simulator and HTC device, but scrolling is not working in Samsung Galaxy S and Samsung Vibrant phones, I am getting the reason of this problem, my code is below..
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:background="@drawable/x01_background">
<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/topgroupwarmup"
></ImageView>
<ListView android:padding="10dip" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:id="@+id/list1" >
</ListView>
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/top_solowarmups"
></ImageView>
<ListView android:padding="10dip" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:id="@+id/list2">
</ListView>
</LinearLayout>
</ScrollView>
please help me, thanks in advance