如何对齐在 android 线性布局水平方向上对齐的项目?

How to align items justified in android linear layout horizontal orientation?

我有 5 张图片,应该以线性布局水平放置,并且应该以合理的方式放置,第 3 张图片位于屏幕中央。所有图片的宽度和高度都相同。

即图像之间的填充应动态调整。

谢谢

您可以使用

android:layout_weight="1"

对于将解决您的问题的每个项目,并在屏幕上使用相等 space 排列项目

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#ff5678" />


    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

    <ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#ff5678" />

    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

    <ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#ff5678" />

    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

    <ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#ff5678" />

    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

    <ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:background="#ff5678" />
</LinearLayout>

Beetwen 每个 ImageView 添加空 View 参数:android:layout_width="0dp" android:layout_weight="1"

您可以使用JustifyLayout居中并在child之间添加相同的边距。

喜欢这个: