以相等的边距对齐android布局

以相等的边距对齐android布局,android,android-layout,android-layout-weight,Android,Android Layout,Android Layout Weight,我正在为我的应用程序添加一个页脚,其中包含三个带有图像的按钮。我想类似下面的看法。我试过android:layou_gravity=right/left/center,但似乎不起作用 下面是我的XML <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="ma

我正在为我的应用程序添加一个页脚,其中包含三个带有图像的按钮。我想类似下面的看法。我试过android:layou_gravity=right/left/center,但似乎不起作用

下面是我的XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<!-- Root element should wrap to parent size. -->

<!-- Your view xml codes. -->

<!--Bottom bar layout should be in root element. Parent should be Relative layout so that we can always align to parent bottom-->
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:weightSum="4">

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:layout_gravity="left"
    android:orientation="vertical"
    >


    <ImageView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/brands"

        />

    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="brands"

        />


</LinearLayout>


<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="vertical"
    android:layout_gravity="center_horizontal"
    >


    <ImageView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/stores"

        />

    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="brands"

        />


</LinearLayout>

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_weight="1"
    android:layout_gravity="right"
    >


    <ImageView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/coupons"

        />

    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="brands"

        />


</LinearLayout>
</LinearLayout>


</RelativeLayout>
您的父LinearLayout具有android:weightSum=4,而您的子LinearLayout all sum为3

因此,将父行布局weightSum android:weightSum=4更改为android:weightSum=3

更新:

这样加上

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<!-- Root element should wrap to parent size. -->

<!-- Your view xml codes. -->

<!--Bottom bar layout should be in root element. Parent should be Relative layout so that we can always align to parent bottom-->
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:weightSum="3">

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="vertical"
     >
    <ImageView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/brands"
        android:layout_gravity="center_horizontal"
        />
    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="brands"
        android:layout_gravity="center_horizontal"
        />
</LinearLayout>
<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="vertical"
   >
    <ImageView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/stores"
        android:layout_gravity="center_horizontal"
        />
    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="brands"
        android:layout_gravity="center_horizontal"
        />
</LinearLayout>

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_weight="1">
 <ImageView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/coupons"
        android:layout_gravity="center_horizontal"
        />
    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="brands" 
        android:layout_gravity="center_horizontal"/>
      </LinearLayout>
   </LinearLayout>
</RelativeLayout>

对布局给予同等重视

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:orientation="horizontal"
    android:layout_height="match_parent">
    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="vertical"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="24dp"
            android:src="@android:drawable/ic_menu_rotate"
            android:layout_height="24dp" />
        <TextView
            android:layout_width="wrap_content"
            android:text="@string/description"
            android:layout_height="wrap_content" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="vertical"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="24dp"
            android:src="@android:drawable/ic_menu_rotate"
            android:layout_height="24dp" />
        <TextView
            android:layout_width="wrap_content"
            android:text="@string/description"
            android:layout_height="wrap_content" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="vertical"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="24dp"
            android:src="@android:drawable/ic_menu_rotate"
            android:layout_height="24dp" />
        <TextView
            android:layout_width="wrap_content"
            android:text="@string/description"
            android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>
请试试这个

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:weightSum="3">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="vertical"
            android:padding="5dp">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/brands" />

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

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="vertical"
            android:padding="5dp">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/stores" />

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

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_weight="1"
            android:gravity="center"
            android:orientation="vertical"
            android:padding="5dp">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/coupons" />

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


</RelativeLayout>

更改所有内部布局

android:layout_gravity=左

android:layout_margin="10dp"//as required
改变

android:weightSum=3

在父布局中

<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- Root element should wrap to parent size. -->

<!-- Your view xml codes. -->

<!--Bottom bar layout should be in root element. Parent should be Relative layout so that we can always align to parent bottom-->
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:weightSum="3">

    <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="wrap_content"
            android:src="@drawable/brands" />

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

    </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="wrap_content"
            android:src="@drawable/stores" />

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

    </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="wrap_content"
            android:src="@drawable/coupons" />

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

    </LinearLayout>
</LinearLayout>

试试这个。我想它会解决你的问题。

它确实使所有的图像都同样适合屏幕。但是我想要一些像照片iv一样的东西。三幅等边的图像。是的,它实际上是以相等的空间排列三个布局,从而获得太大的图像。但我确实想要像照片Iv那样的东西。带边距。我建议您将图像视图宽度保持在24dp左右……如果您有svg格式的图像,请使用矢量绘图来显示它们。我添加了android:layout_margin=10dp和layout_width=24dp,但现在图像视图高度我太大了。不知道为什么宽度和高度都应该是24dp。这是android底部导航指南文档,你可以阅读更多关于你可以在这样的布局上使用的边距和大小的信息,希望这有帮助!谢谢,是的。除此之外,我还增加了android:layout\u width=63dp android:layout\u height=85dpPro在这里发布的提示:读者更喜欢真实的文字,而不是缩写的txtspk——后者适合Facebook聊天,但我们更希望这里的内容更具可读性。我们希望段落文本不与代码格式合并,这也是为了让事情尽可能清楚。希望有帮助!
android:layout_margin="10dp"//as required
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- Root element should wrap to parent size. -->

<!-- Your view xml codes. -->

<!--Bottom bar layout should be in root element. Parent should be Relative layout so that we can always align to parent bottom-->
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:weightSum="3">

    <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="wrap_content"
            android:src="@drawable/brands" />

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

    </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="wrap_content"
            android:src="@drawable/stores" />

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

    </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="wrap_content"
            android:src="@drawable/coupons" />

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

    </LinearLayout>
</LinearLayout>