gpt4 book ai didi

java - 屏幕底部 1/3 处的对齐按钮

转载 作者:行者123 更新时间:2023-12-01 09:22:52 25 4
gpt4 key购买 nike

我正在尝试将一个按钮对齐,但不是在屏幕底部,而是在底线上方稍远的地方。我怎样才能做到这一点?我尝试过将按钮垂直和水平居中并且它有效,但我需要将按钮移动到中心下方一点或底线上方一点。

enter image description here

我需要将屏幕上的“PLAY”按钮移到稍低的位置。此外,我还需要稍微缩小按钮,使其达到当前大小的 80%。我怎样才能做到这一点?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="acevix.gladiators3.MainActivity">

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:srcCompat="@drawable/splash"
android:id="@+id/imageView"
android:scaleType="centerCrop"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:adjustViewBounds="true" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginBottom="50dp"
android:id="@+id/button3"
android:background="@drawable/play" />

</RelativeLayout>

最佳答案

使用此代码,

android:layout_alignParentBottom="true"
android:layout_centerHorizo​​ntal="true"
android:layout_marginBottom="30dp"

试试这个;

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="30dp"/>

</RelativeLayout>

更新代码

使用这个:android:layout_below

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/logo"
android:layout_width="200dp"
android:layout_height="80dp"
android:layout_centerInParent="true" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/logo"
android:layout_centerInParent="true"
android:layout_marginTop="30dp" />

</RelativeLayout>

关于java - 屏幕底部 1/3 处的对齐按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40045162/

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