当前位置:   article > 正文

Android Studio六大基本布局的概览和每个布局的关键特性以及实例分析

Android Studio六大基本布局的概览和每个布局的关键特性以及实例分析

1. 线性布局 (LinearLayout)

描述
线性布局是一种按指定方向(水平或垂直)排列其子视图的布局容器。通过android:orientation属性可设置为horizontalvertical

关键属性

  • android:orientation: 指定布局方向。
  • android:layout_weight: 子视图权重,用于分配剩余空间。

示例

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2" />

</LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

2. 相对布局 (RelativeLayout)

描述
相对布局允许子视图相对于其他视图或父容器的位置进行定位,而不是基于屏幕坐标系。

关键属性

  • android:layout_alignParentLeft/Right/Top/Bottom: 相对于父容器对齐。
  • android:layout_toLeftOf/toRightOf/below/above: 相对于兄弟视图定位。
  • android:layout_centerInParent: 在父容器中心对齐。
  • android:layout_centerHorizontal/Vertical: 在水平或垂直方向居中。

示例

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Title"
        android:layout_centerHorizontal="true" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click me"
        
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/92210
推荐阅读
相关标签
  

闽ICP备14008679号