安卓:布局对齐



我的布局中有 3 个"组"项目:

  1. Button + TextView(应在右侧(
  2. ImageView + ImageView + TextView(应该在中心(
  3. TextView + Button(应在左侧(

它就像平板电脑的页脚。但是我所有的物品从左侧开始都是相邻的。我尝试将它们分组为单独的布局,但没有帮助。

这是我的代码:

    <LinearLayout
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:orientation="horizontal"
        android:layout_gravity="bottom"
        android:background="@android:color/black">
            <Button
                android:background="@drawable/arrow_left"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:id="@+id/footer_left_arrow"
                android:layout_margin="10dp"/>
            <TextView
                android:text="text"
                android:textColor="#FFFFFF"
                android:textSize="20sp"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:id="@+id/footer_left_text"/>
            <ImageView
                android:background="@drawable/logo"
                android:layout_marginTop="5dp"
                android:layout_marginBottom="5dp"
                android:layout_width="50dp"
                android:layout_height="20dp"
                android:layout_gravity="center"/>
            <ImageView
                    android:background="@drawable/footer_vertical_line"
                android:layout_margin="5dp"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" />
            <TextView
                android:text="text"
                android:textColor="#FFFFFF"
                android:textSize="12sp"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center" />
            <TextView
                android:text="text"
                android:textColor="#FFFFFF"
                android:textSize="20sp"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" />
            <Button
                android:background="@drawable/arrow_right"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:layout_margin="10dp" />
    </LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/footer"
    android:layout_width="match_parent"
    android:layout_height="40dp"
    android:layout_gravity="bottom"
    android:background="@android:color/black"
    android:orientation="horizontal">
    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="vertical">
        <Button
            android:id="@+id/footer_left_arrow"
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:background="@drawable/arrow_left" />
        <TextView
            android:id="@+id/footer_left_text"
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:text="text"
            android:textColor="#FFFFFF"
            android:textSize="20sp" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="vertical">
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:background="@drawable/footer_vertical_line" />
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:background="@android:drawable/ic_input_add" />
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:gravity="center"
            android:text="text"
            android:textColor="#FFFFFF"
            android:textSize="12sp" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="vertical"
        android:gravity="center">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:text="text"
            android:textColor="#FFFFFF"
            android:textSize="20sp" />
        <Button
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:background="@drawable/arrow_right" />
    </LinearLayout>
</LinearLayout>

使用这个。

最新更新