0

1 つの xml ファイルで複数の水平スクロール ビューを作成する方法を考えています。これは通常の Scroll View からの単純な調整ですか、それとももっと複雑ですか?

ありがとう

4

1 に答える 1

0

はい、xmlに複数のスクロールビューを配置できるはずです。次のようなことを試すことができます:

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/LinearLayoutRight" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
<HorizontalScrollView android:id="@+id/scrollView1" android:background="#000" android:layout_width="match_parent" android:layout_height="300dp"> 
</HorizontalScrollView>
 <HorizontalScrollView android:id="@+id/scrollView1" android:background="#f00" android:layout_width="match_parent" android:layout_height="300dp">
  </HorizontalScrollView>  
</LinearLayout>
于 2013-02-25T18:53:07.223 に答える