私の活動ページには、1つのリストビュー(listview1)、listview1の下に、textrviewがあり、このtestviewの下に2番目のlistview私は完全なレイアウトをスクロールしたい。2つのリストビューとandroidのテキストビューを含むレイアウトをスクロールする方法
以下はScrollView内の複数のリストビューに、それは不可能です私の経験では、サンプルコード
<ScrollView
android:id="@+id/scrol1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/linearLayout1"
android:layout_marginTop="15dp" android:scrollbars="vertical" android:isScrollContainer="true">
<RelativeLayout
android:id="@+id/relativeLayout4"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/linearLayout1"
android:layout_marginTop="15dp" >
<ListView
android:id="@+id/lstMore"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:divider="@null"
android:fadingEdge="none"
android:footerDividersEnabled="false" android:dividerHeight="0dp" android:cacheColorHint="#00000000">
</ListView>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Learn More"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/black"
android:textStyle="bold" android:layout_below="@id/lstMore"/>
<ListView
android:id="@+id/lstMoreBottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fadingEdge="none" android:layout_below="@id/textView2" android:divider="@null" android:dividerHeight="0dp" android:cacheColorHint="#00000000">
</ListView>
</RelativeLayout>
</ScrollView>
に動作します。あなたのコードは何をしますか、何が起こるか、何が見えるかなど... –
上記のコードを置くことで、メインのスクロールビューは表示されません。リストビュー1、リストビュー2のスクロールも機能しません。 –