如何在Android上创建复杂的表格布局

发布于 2024-09-30 14:34:02 字数 1029 浏览 6 评论 0原文

这基本上就是我想要实现的目标: 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生来就爱笑 2024-10-07 14:34:02

也许是这样的?

<?xml version="1.0" encoding="utf-8"?>

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
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="fill_parent"/>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" >   
        <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"
         />
 </LinearLayout>
 </TableRow>
</TableLayout>

Maybe something like this?

<?xml version="1.0" encoding="utf-8"?>

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
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="fill_parent"/>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" >   
        <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"
         />
 </LinearLayout>
 </TableRow>
</TableLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文