我的布局中有很多行,我需要部分滚动视图。我想要修复linearlayout和第一个tablerow以及其余的Scrollview。现在,我有这段代码:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout>
<TextView
/>
</LinearLayout>
<TableRow
>
<TextView
/>
<TextView
/>
<TextView
/>
</TableRow>
</TableLayout>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableLayout
>
<TableRow
>
<TextView
/>
<TextView
/>
<TextView
/>
</TableRow>
<TableRow
>
<TextView
/>
<TextView
/>
<TextView
/>
</TableRow>
</TableLayout>
</ScrollView>
但不编译。我应该如何使用scrollview来实现我的目标?
谢谢:)
答案 0 :(得分:2)
android:layout_height
和android:layout_width
才能进行编译。LinearLayout
或任何符合您需求的布局中。