gpt4 book ai didi

android - 避免与 android :layout_centerVertical ="true" in RelativeLayout 重叠

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

[编辑]

给定:

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

<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="200dip"
android:background="#ff00ff00" />

<TextView
android:id="@+id/text2"
android:layout_width="match_parent"
android:layout_height="200dip"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="#ffff0000" />

</RelativeLayout>

如何避免在小屏幕上 text1 和 text2 之间的重叠。重要:

  • 如果可能且不重叠,text2 应准确显示在屏幕的垂直中心

  • 如果有重叠,text2应该向下移动一点,直接显示在text1的下面

最佳答案

android:gravity="center_vertical" 添加到子 LinearLayout。这将使它成为父级的中心。

更改为 button_container 的 android:layout_height="fill_parent"。这将使它填充父级的剩余高度。更改后您的代码将如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffff0000"
android:text="TextView" />

<LinearLayout
android:id="@+id/button_container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical" >

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="test" />

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="test" />

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="test" />
</LinearLayout>

关于android - 避免与 android :layout_centerVertical ="true" in RelativeLayout 重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9598218/

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