亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Android標簽控件的布局方式有哪些

小樊
81
2024-08-18 08:28:40
欄目: 編程語言

在Android中,標簽控件可以使用以下幾種布局方式:

  1. LinearLayout布局:使用垂直或水平的LinearLayout布局來放置標簽控件。可以使用android:orientation屬性來指定布局方向。
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Label:" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>
  1. RelativeLayout布局:使用RelativeLayout布局來放置標簽控件,可以使用android:layout_alignParentStart或android:layout_alignParentEnd屬性來設置標簽控件的位置。
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Label:"
        android:layout_alignParentStart="true" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_toEndOf="@id/label" />

</RelativeLayout>
  1. ConstraintLayout布局:使用ConstraintLayout布局來放置標簽控件,可以使用約束來設置標簽控件的位置。
<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Label:"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <EditText
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toEndOf="@id/label"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

0
称多县| 乌鲁木齐县| 游戏| 大连市| 大庆市| 衡水市| 洛扎县| 平湖市| 绥德县| 东阳市| 自贡市| 天镇县| 舟山市| 成都市| 崇礼县| 集安市| 万载县| 临武县| 时尚| 繁峙县| 邳州市| 黄浦区| 柘城县| 宁陵县| 繁昌县| 东乌珠穆沁旗| 宁国市| 济南市| 贵溪市| 淮南市| 沙田区| 乐至县| 九江县| 榆社县| 江永县| 托克托县| 印江| 临颍县| 焉耆| 北京市| 遂川县|