我很难弄清楚它,并且模拟器的缓慢增加了它。有人可以在这里给我一些指示..
我打算做的是推动这些盒子的宽度,通常发生的情况是按钮只是包裹起来并在右侧留下一个空白空间。这是我一直在修复的xml代码......
<ScrollView
android:layout_width="fill_parent"
android:layout_height="150dp" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1" >
<TableRow>
<Button
android:id="@+id/bOne"
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Radio Buttons" />
</TableRow>
<TableRow>
<Button
android:id="@+id/bTwo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="List View" />
</TableRow>
<TableRow>
<Button
android:id="@+id/bThree"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow>
<TableRow>
<Button
android:id="@+id/bFour"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow>
<TableRow>
<Button
android:id="@+id/bFive"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button" />
</TableRow>
</TableLayout>
</ScrollView>