我在这里阅读了一些关于这个问题的帖子,但是我无法显示FAB。我尝试了不同的方法,但我真的不怎么样。
<android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="112dp"
android:background="@color/colorPrimary"
android:elevation="@dimen/elevation_toolbar"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:contentScrim="@color/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|enterAlways"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:layout_marginLeft="@dimen/list_toolbar_side_margin"
android:layout_marginRight="@dimen/list_toolbar_side_margin"
app:layout_collapseMode="pin" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
style="@style/AppTabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:tabGravity="fill"
app:tabMode="fixed"
app:tabTextAppearance="@style/AppTabTextAppearance"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_id"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
android:clickable="true"
android:src="@drawable/ic_add"
/>
如果它检查android studio中的预览,那么fab就在那里。甚至,当我调试应用程序时,我可以看到工厂已经创建。
我也尝试使用应用:layout_anchor =&#34; @ id / viewpager&#34; 或 app:layout_anchor =&#34; @ id / app_bar_layout&#34; < / strong>使用** app:layout_anchorGravity =&#34; bottom | right&#34; **它没有用。 FAB由viewpager覆盖。我怎么能避免这种情况?
我附上主要活动的图像。你会看到一个按钮&#34;添加植物&#34;。此按钮应由FAB替换。
答案 0 :(得分:0)
在你的xml中试试这个
app:layout_anchor="@id/viewpager"
app:layout_anchorGravity="bottom|right"
并删除
android:layout_gravity="end|bottom"
答案 1 :(得分:0)
尝试将floatingActionButton插入frameLayout并将此布局插入主布局..它适用于我
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
.
.
.
<FrameLayout
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_add_room"
android:layout_width="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginRight="8dp"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:src="@drawable/ic_add"
app:fabSize="normal" />
</FrameLayout>
.
.
.
</android.support.constraint.ConstraintLayout>