0

所以我有以下布局:

TableLayout

    TableRow
        TextView0
        TextView1

    TableRow            
        TextView0
        TextView1

我正在尝试创建此布局:

课程信息:数学 101 教育:工程

问题是第二列(TextView1)会根据第一列(TextView0)中最大的文字向右对齐有没有办法让第二列直接与第一列对齐?

4

1 回答 1

1

您正在使用TableLayout-TableRow 并且不想使用它们的功能......好吧,那就不要使用 TableRow. LinearLayout取而代之。

LinearLayout
    >TextView0
    >TextView1

LinearLayout
     >TextView0
     >TextView1
于 2013-08-31T06:53:47.327 回答