作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个垂直的 LiniarLayout,其内容宽度可以换行。我想让所有 child 的宽度相同(最大 child 的宽度)而不是使用固定尺寸。
最佳答案
<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>
关于android - 对齐 Liniar 布局子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24887754/
我有一个垂直的 LiniarLayout,其内容宽度可以换行。我想让所有 child 的宽度相同(最大 child 的宽度)而不是使用固定尺寸。 最佳答案
我是一名优秀的程序员,十分优秀!