使TableLayout列包装到内容

时间:2013-08-30 19:58:31

标签: android tablelayout

所以我有以下布局:

TableLayout

    TableRow
        TextView0
        TextView1

    TableRow            
        TextView0
        TextView1

我正在尝试创建此布局:

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

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

1 个答案:

答案 0 :(得分:1)

您正在使用TableLayout - TableRow并且不想使用他们的功能......那么,请不要使用TableRow。请改用LinearLayout

LinearLayout
    >TextView0
    >TextView1

LinearLayout
     >TextView0
     >TextView1