Android LinearLayout 元素使用指南:布局、方向设置及子元素添加
LinearLayout 可以在 XML 文件中使用,需要先在布局文件中声明,例如:
<LinearLayout
android:layout_width='match_parent'
android:layout_height='wrap_content'
android:orientation='vertical'>
<!-- 在这里添加子元素 -->
</LinearLayout>
其中,android:orientation 属性用于设置 LinearLayout 的方向,有 horizontal 和 vertical 两个取值。在上面的例子中,LinearLayout 的方向被设置为垂直方向。在 LinearLayout 元素内部可以添加其他的元素,例如 TextView、ImageView、Button 等等。
原文地址: https://www.cveoy.top/t/topic/nYhE 著作权归作者所有。请勿转载和采集!