gpt4 book ai didi

android - 此界面的最佳父级布局?

转载 作者:行者123 更新时间:2023-11-29 01:15:42 27 4
gpt4 key购买 nike

我正在尝试找出用于构建此界面的最佳父级布局。

enter image description here以下是一些附加信息/要求:

A) 包含所有内容的 ViewGroup。

B) 填充可用垂直间距的 MapView

C) 水平滚动项目列表的 RecylcerView。具有固定高度(即 200 dp)

D) 位于 View B + C 顶部的 FloatingActionButton。它锚定在 View C 的右上角。

我为 View A 尝试了很多不同的选项,但它们似乎都不起作用。

  • LinearLayout:LinearLayout 没有 Z 索引的概念,所以FloatActionButton 被切断。
  • RelativeLayout:RelativeLayout 没有“填充剩余垂直空间”的概念,因此 MapView 的高度不是动态的,需要固定
  • FrameLayout:与 RelativeLayout 相同的问题。

此外,当用户点击 FloatingActionButton 时,我需要将 fragment 模态注入(inject)到此 Activity 中,以便将其放置在当前布局之上。

任何帮助将不胜感激。非常感谢!!!

最佳答案

可能是这样的——

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/layout_a"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.RecyclerView
android:id="@+id/layout_c"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_alignParentBottom="true"/>


<com.google.android.gms.maps.MapView
android:id="@+id/layout_b"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/layout_c"/>


<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_d"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="200dp"
android:layout_marginRight="16dp"
app:fabSize="normal"/>

</RelativeLayout>

关于android - 此界面的最佳父级布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39841433/

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