gpt4 book ai didi

android - 一个屏幕上的两个相对布局

转载 作者:搜寻专家 更新时间:2023-11-01 09:04:54 25 4
gpt4 key购买 nike

我想在我的屏幕上有 2 个相关布局。一个在另一个下面。我制作了这段代码,但它不起作用。在这种情况下,我只能看到两者的上层相对布局,尽管我设置了 wrap_content,但此布局占据了整个空间。

编辑!:我把第二个代码放在下面也失败了。

EDIT 2!:我发现了问题……有点……难过。问题出在我的主题上。我将背景设置为太大的 png 文件,当我通过 list 应用默认主题时发生了这种情况。当我删除它时,一切都很好。

这个版本也失败了。

新代码:

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

<RelativeLayout
android:id="@+id/some_id"
android:layout_above="@+id/some_id2"
android:layout_alignParentTop="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<Button
android:id="@+id/main_button_localize"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/main_localize" />

</RelativeLayout>

<RelativeLayout
android:id="@id/some_id2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >

<ToggleButton
android:id="@+id/main_help"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</RelativeLayout>

</RelativeLayout>

旧代码:

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

<RelativeLayout
android:id="@+id/maps_manager_menu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" >

<!-- Top -->
<Button
android:id="@+id/maps_manager_top_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/empty" />

<Button
android:id="@+id/maps_manager_top_middle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/maps_manager_top_left"
android:contentDescription="@string/empty" />

<Button
android:id="@+id/maps_manager_top_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/maps_manager_top_middle"
android:contentDescription="@string/empty" />

<!-- Middle -->
<Button
android:id="@+id/maps_manager_middle_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/maps_manager_top_left"
android:contentDescription="@string/empty" />

<Button
android:id="@+id/maps_manager_middle_middle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/maps_manager_middle_left"
android:layout_below="@id/maps_manager_top_middle"
android:contentDescription="@string/empty" />

<Button
android:id="@+id/maps_manager_middle_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/maps_manager_middle_middle"
android:layout_below="@id/maps_manager_top_right"
android:contentDescription="@string/empty" />

<!-- Bottom -->
<Button
android:id="@+id/maps_manager_bottom_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/maps_manager_middle_left"
android:contentDescription="@string/empty" />

<Button
android:id="@+id/maps_manager_bottom_middle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/maps_manager_bottom_left"
android:layout_below="@id/maps_manager_middle_middle"
android:contentDescription="@string/empty" />

<Button
android:id="@+id/maps_manager_bottom_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/maps_manager_bottom_middle"
android:layout_below="@id/maps_manager_middle_right"
android:contentDescription="@string/empty" />

</RelativeLayout>

<RelativeLayout
android:id="@+id/maps_manager_controls"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="true"
android:layout_below="@id/maps_manager_menu" >

<ToggleButton
android:id="@+id/maps_manager_help"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</RelativeLayout>

</RelativeLayout>

最佳答案

最好将垂直方向的 LinearLayout 作为两个子 RelativeLayout 的父级。如果您可以为 RelativeLayouts 设置 80:20 的高度权重,那么它将适合整个屏幕。

关于android - 一个屏幕上的两个相对布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12726698/

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