我有一个包含4个TextView的水平LinearLayout。有时,其中一个文本视图中的文本很长,最后一个文本视图在布局中不正确 当然,我可以设置一个textview,但这不是最佳的,因为文本是从不同的地方设置的,并且具有不同的样式 知道如何解决这个问题吗? 非常感谢。
答案 0 :(得分:0)
您可以使用权重将LinearLayout中的视图分配为25%。
例如(未经测试,可能包含拼写错误):
<LinearLayout android:weightSum="100" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal">
<TextView android:layout_weight="25" android:layout_width="0dp" android:layout_height="wrap_content"></TextView>
<TextView android:layout_weight="25" android:layout_width="0dp" android:layout_height="wrap_content"></TextView>
<TextView android:layout_weight="25" android:layout_width="0dp" android:layout_height="wrap_content"></TextView>
<TextView android:layout_weight="25" android:layout_width="0dp" android:layout_height="wrap_content"></TextView>
</LinearLayout>