如何在Android上创建复杂的表格布局
这基本上就是我想要实现的目标: http://i52.tinypic.com/15qelwy.jpg
到目前为止,这是我的 main.xml 文件
<TableLayout
android:paddingTop="80sp"
android:paddingLeft="40sp"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow>
<TextView
android:text="@string/questions"
android:textColor="#000"
android:textStyle="bold"
android:textSize="18dip"
android:layout_height="100px"
android:layout_width="100px"/>
<ImageButton
android:id="@+id/button_one"
android:src="@drawable/button_flat"
android:layout_width="227px"
android:background="@null"
/>
<ImageButton
android:id="@+id/button_one"
android:src="@drawable/button_flat"
android:layout_width="227px"
android:background="@null"
/>
</TableRow>
</TableLayout>
结果并不漂亮,因为它将第二个按钮显示到另一列中。我怎样才能只创建两列;第一个是可扩展的,下一列包含多个图像按钮?
谢谢。
this is basically what i want to achieve : http://i52.tinypic.com/15qelwy.jpg
so far this is my main.xml file
<TableLayout
android:paddingTop="80sp"
android:paddingLeft="40sp"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow>
<TextView
android:text="@string/questions"
android:textColor="#000"
android:textStyle="bold"
android:textSize="18dip"
android:layout_height="100px"
android:layout_width="100px"/>
<ImageButton
android:id="@+id/button_one"
android:src="@drawable/button_flat"
android:layout_width="227px"
android:background="@null"
/>
<ImageButton
android:id="@+id/button_one"
android:src="@drawable/button_flat"
android:layout_width="227px"
android:background="@null"
/>
</TableRow>
</TableLayout>
The result isn't pretty as it displays the 2nd button into another column. How can i create just two columns; the first one is expandable and the next column contains multiple image buttons?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许是这样的?
Maybe something like this?