gpt4 book ai didi

android - 使用填充时 ImageView 未垂直对齐

转载 作者:搜寻专家 更新时间:2023-11-01 08:03:01 24 4
gpt4 key购买 nike

我试图让两个 ImageView 并排放置,并在图像周围留出间隙。我一直在使用 Padding、Margin 等,它们都具有相同的效果(见下图)

One image is shifted upwards

如您所见,右边的图像向上移动了,我该如何阻止它?

这是我使用的布局文件:

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

<!-- Top Row -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/tab_headlines"
android:src="@drawable/headlines"
android:layout_margin="5sp"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/tab_headlines"
android:src="@drawable/headlines"
/>

</LinearLayout>

我将使用更多行图像,因此需要额外的 LinearLayout

最佳答案

使用layout_weight 平均划分布局。试试下面的代码:

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

<!-- Top Row -->

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="6dp"
android:layout_marginRight="3dp"
android:layout_weight="1"
android:contentDescription="@string/tab_headlines"
android:src="@drawable/headlines" />

<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="3dp"
android:layout_marginRight="6dp"
android:layout_weight="1"
android:contentDescription="@string/tab_headlines"
android:src="@drawable/headlines" />
</LinearLayout>
</LinearLayout>

此外,切勿使用 sp 指定布局尺寸。请改用 dp

关于android - 使用填充时 ImageView 未垂直对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18334126/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com