我有一个包含内容宽度的垂直LiniarLayout。 我想让所有孩子的宽度相同(最大孩子的宽度)不使用固定尺寸。
答案 0 :(得分:0)
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Short"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Short"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Some long text to match layout"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="short"/>
</LinearLayout>
答案 1 :(得分:-1)
你能在问题上更明确吗?当你说孩子时,有什么样的看法? 如果你想让所有孩子都有相同的尺寸,你只需要使用 - width =&#34; match_parent&#34; - 在儿童。 那回答你的问题? 这是一个例子:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello Worldddd" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello Worldddddddddddddddddddddddd" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello Worldddd" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Hello Worldddddddddddd" />
</LinearLayout>