gpt4 book ai didi

java - 相对布局- android :layout_centerHorizontal ="true" and android:layout_centerVertical ="true" dont center the imageview

转载 作者:太空宇宙 更新时间:2023-11-03 13:26:28 27 4
gpt4 key购买 nike

由于某些奇怪的原因,android:layout_centerHorizo​​ntal="true"android:layout_centerVertical="true" 没有将 ImageView 居中似乎使我的 ImageView

居中

有什么建议吗?

图像卡在屏幕的右上角,没有按预期居中。

来源:

*<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8sp"
android:layout_marginLeft="8sp"
android:layout_marginRight="8sp"
android:layout_marginTop="8sp"
android:background="@drawable/background"
android:orientation="vertical" >

<RelativeLayout
android:id="@+id/start"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/emblem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:adjustViewBounds="true"
android:scaleType="fitStart"
android:src="@drawable/apn_app_logo" />
</RelativeLayout>

<RelativeLayout
android:id="@+id/start2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="8sp"
android:layout_toRightOf="@id/start" >

<Button
android:id="@+id/go_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="@drawable/apn_app_go_button" />

<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/go_button"
android:layout_marginRight="8sp"
android:layout_marginTop="8sp"
android:gravity="center"
android:text="@string/start_text"
android:textColor="#000000"
android:textSize="18sp" />
</RelativeLayout>

</RelativeLayout>*

最佳答案

移动centerHorizontal到相对布局。当前,您在 ImageView 中将图像居中(基本上您在 View 中将图像居中),您想要的是使内容居中的相对布局。

尝试:

<RelativeLayout
android:id="@+id/start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true">

<ImageView
android:id="@+id/emblem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitStart"
android:src="@drawable/apn_app_logo" />
</RelativeLayout>

另一种选择是:

<RelativeLayout
android:id="@+id/start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>

<ImageView
android:id="@+id/emblem"
android:layout_width="match_parent" //change to match_parent
android:layout_height="match_parent" //change to match_parent
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:adjustViewBounds="true"
android:scaleType="fitStart"
android:src="@drawable/apn_app_logo" />
</RelativeLayout>

第二个选项设置 imageView 的宽度和高度匹配 relativeView , 这将允许您使用 centerHorizontalcenterVerticalimageView

关于java - 相对布局- android :layout_centerHorizontal ="true" and android:layout_centerVertical ="true" dont center the imageview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18922396/

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