gpt4 book ai didi

Android Center 布局隐藏按钮

转载 作者:行者123 更新时间:2023-11-29 15:33:20 25 4
gpt4 key购买 nike

我正在为我的第一个 Android 应用程序设计一个相当基本的屏幕布局,但遇到了一些问题。我的目标是在左上角和右上角有一个 TextView,在屏幕正中间有一个大的“hello world”TextView,然后在屏幕底部有一个按钮。我的问题是,要使“hello world”TextView 垂直居中,我需要设置 layout_height="fill_parent"。但是,这会导致中间的 TextView 覆盖并隐藏屏幕底部的按钮。有没有比我目前正在尝试的更好的方法来做到这一点?我在下面附上了我的 ui xml。谢谢!

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal">
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1">
<TableRow>
<TextView
android:text="@string/label_left" />
<TextView
android:text="@string/label_right"
android:gravity="right" />
</TableRow>
</TableLayout>

<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/hello_world"
android:gravity="center"
android:textSize="40sp" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/next_activity"
android:gravity="center"
android:textSize="30sp" />
</LinearLayout>

最佳答案

如果您改用 RelativeLayout,您可以轻松地将其他 View 对齐到屏幕的顶部/底部:

使用 android:layout_alignParentTop="true"

android:layout_alignParentBottom="true"

左/右相同:

android:layout_alignParentLeft="true" or android:layout_alignParentRight="true"

这个呢?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
android:text="@string/label_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"/>
<TextView
android:text="@string/label_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"/>

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world"
android:gravity="center"
android:textSize="40sp"
android:layout_centerInParent="true"/>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/next_activity"
android:gravity="center"
android:textSize="30sp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"/>

是您要找的吗?

关于Android Center 布局隐藏按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2391575/

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