scroolview içerisinde listview oluğunda scrool çalışmıyor?
Hareketli bir sayfa içerisine custom listview eklemek istiyorum. Listview i ekleyince normalde scrool view sayesinde asağı yukarı hareket eden sayfa hareket etmemeye baslıyor. Nerede hata yapıyorum cözüm yöntemini bilen var mı?
[code]
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:verticalScrollbarPosition="left"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/searchhh"
>
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Seyahat edin"
android:textColor="#ffffff" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/header"
android:orientation="vertical"
android:background="#aaa9a9" >
<ListView
android:id="@+id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
</ListView>
</LinearLayout>
<!-- Content End -->
</LinearLayout>
</ScrollView>
[/code]