我尝试在ScrollView中使用ScrollView和TableLayout,如下所示:
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Input text: " />
<EditText
android:id="@+id/weightEditText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="numberDecimal" >
<requestFocus />
</EditText>
</TableRow>
</TableLayout>
</ScrollView>
但它不起作用。即使我的内容太大,也不会显示滚动条。有没有人有任何建议,为什么它这样工作?
答案 0 :(得分:3)
尝试将scrollview layout_height更改为match_parent,如下所示:
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp" >
使用wrap_content时,即使屏幕结束,您的scrollview也会变得更大,但是当使用match_parent时,您的scrollview将适合屏幕,当scrollview的内容溢出时,它将显示滚动条。
罗尔夫