我有以下问题:
我需要18个按钮,旁边有TextView
个,顶部有一个TextView
。当然,它们不适合显示,所以我搜索了这个问题并找到ListView
,但这对我不起作用,因为我需要18 Buttons
和TextViews
不同的ID。
我希望你能帮助我。
答案 0 :(得分:2)
使用 <ScrollView>
注意 <ScrollView>
只有一个直接孩子
所以必须使用 :
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<!-- your contents are here -->
</LinearLayout>
</ScrollView>