gpt4 book ai didi

android - 在图形布局中对齐图像

转载 作者:行者123 更新时间:2023-11-30 03:59:57 25 4
gpt4 key购买 nike

您好,我想知道如何将框与 Android 屏幕底部对齐?我已经将盒子制作为 9patch png 图像,但实际图像和边框之间仍然存在一些差距。谁能帮帮我吗?我的意思是控制图像大小的图形布局屏幕上的蓝色边框与实际图像之间存在实际间隙。请原谅我的英语。

这是蓝框的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" >

<ImageView
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/background" />

<ImageView
android:id="@+id/topbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@drawable/top_bar" />

<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/topbar"
android:layout_centerHorizontal="true"
android:layout_marginTop="95dp"
android:src="@drawable/icon_green" />

<ImageView
android:id="@+id/box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="23dp"
android:src="@drawable/box" />

</RelativeLayout>

最佳答案

没有完全理解问题但尝试添加

 android:adjustViewBounds="true" 

到您的 ImageView。

我看到带有 id 'box' 的 View 与底部对齐并且底部边距为 23dp。这将在屏幕底部创建一个间隙;)

关于android - 在图形布局中对齐图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12669763/

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