gpt4 book ai didi

android - FrameLayout 内的 FAB 位于 fragment 之上

转载 作者:太空狗 更新时间:2023-10-29 15:51:14 29 4
gpt4 key购买 nike

在我的布局中,我有一个 FrameLayout,我打算在其中根据用户输入显示不同的布局。我想在所有这些布局中显示一个 FloatingActionButton

为了不重复所有的FloatingActionButton,我想将它附加到FrameLayout。问题是按钮没有正确显示在 fragment 布局的顶部。例如,显示的初始 fragment 有一个 GridView,按钮在它后面。

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
tools:context="xeniasis.mymarket.MainActivity">

<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="horizontal"
android:weightSum="4">

<LinearLayout
android:id="@+id/categories_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:paddingRight="20dp">

<ExpandableListView
android:id="@+id/categories_listView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>

<FrameLayout
android:id="@+id/mainPane"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3">

<android.support.design.widget.FloatingActionButton
android:id="@+id/settings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|start"
android:layout_margin="8dp"
android:clickable="true"
android:elevation="5dp"
android:src="@android:drawable/ic_menu_search" />
</FrameLayout>
</LinearLayout>
</LinearLayout>

和以编程方式显示的 fragment 布局:

<LinearLayout 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"
android:orientation="vertical"
tools:context="xeniasis.mymarket.MainActivity">

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipeRefreshContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingTop="@dimen/activity_vertical_margin">

<GridView
android:id="@+id/productsGridview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:numColumns="3"></GridView>

</android.support.v4.widget.SwipeRefreshLayout>
</LinearLayout>

结果: enter image description here

最佳答案

FrameLayout 中,声明另一个 Framelayout 并在那里填充 fragment 。它应该有效。

... <LinearLayout>
.....

<FrameLayout
android:id="@+id/mainPane"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3">

<FrameLayout
android:id="@+id/fragment_inflate"
android:layout_width="match_parent"
android:layout_height="match_parent">


<android.support.design.widget.FloatingActionButton
android:id="@+id/settings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|start"
android:layout_margin="8dp"
android:clickable="true"
android:elevation="5dp"
android:src="@android:drawable/ic_menu_search" />
</FrameLayout>

关于android - FrameLayout 内的 FAB 位于 fragment 之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37622275/

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