为什么文本视图不会占用整个表行的宽度是多少?(Why does text view not take

2019-10-29 01:33发布

我不知道,如果这个问题已经回答了或没有(我试图寻找,但找不到任何东西),这是我有一个问题关于布局的一部分。

对于选定的TextView,这里是XML代码

我的问题是,这是为什么的TextView不占用该行的全部宽度。 我假设,因为我用“match_parent”为layout_width该TextView中应承担其母公司,这是的TableRow的完整宽度。 我试图寻找这种情况上来就TableLayout API( http://developer.android.com/reference/android/widget/TableLayout.html ),但唯一的实例中,“match_parent”被提及是在情况下,你添加元件没有它在一排中的表的布局,其宽度将被设置为“match_parent”。 这是否有什么与行/列和行为在某种程度上改写“match_parent”?

Answer 1:

分配

 android:layout_weight="1"

到的TextView

它将占用整个宽度



文章来源: Why does text view not take up the whole table row's width?