RelativeLayout
に2つのlisView
があります。最初のリストを超えると2番目のリストが画面に表示され、画面をランドスケープモードに変更すると再び2番目のリストに戻ります。だから私は画面をスクロール可能にしたい。2つのリストビューでスクロール可能なアクティビティを作成します
ここに私のXMLコードは、だ
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="com.neemshade.moneyflow.phase1.MainActivity$PlaceholderFragment">
<TextView
android:id="@+id/purchase"
android:layout_centerHorizontal="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="PURCHASE"/>
<ListView
android:id="@+id/outstandingPurchaseList"
android:paddingTop="3dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/purchase"
android:scrollbars="none">
</ListView>
<TextView
android:id="@+id/sale"
android:layout_centerHorizontal="true"
android:paddingTop="50dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SALE"
android:layout_below="@+id/outstandingPurchaseList"/>
<ListView
android:id="@+id/outstandingSaleList"
android:paddingTop="3dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/sale"
android:scrollbars="none">
</ListView>
セクションリストを別々にスクロールしたくない場合 –
https://github.com/commonsguy/cwac-merge 1つのListView、その中に2つのアダプタ。 –