gpt4 book ai didi

android - 屏幕边缘的横向按钮

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

我想像这样在屏幕边缘添加一个按钮:

enter image description here

我尝试使用类似于下面的代码,但由于旋转是围绕中心进行的,所以按钮右侧的空间大约是按钮长度的一半。

<?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="match_parent" >

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:rotation="270"
android:text="Button" />

</RelativeLayout>

最佳答案

使用 RelativeLayout 访问 Button 的属性 layout_alignParentEnd。如果您的根布局是 RelativeLayout 则使用它,如果不是,您可以将您的 Button 包装在 RelativeLayout 中并使用该布局。如果选择后一个选项,则需要定位该布局。

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

<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_gravity="center_vertical|right"
android:rotation="270"/>
</RelativeLayout>

关于android - 屏幕边缘的横向按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31304705/

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