我是Android应用程序开发的新手,并实现了SlidingTabLayout。我想在其中一个选项卡中显示浮动按钮,但无法执行此操作。我已经尝试在我的标签片段中包含我的按钮以及我的主要活动。在mainactivity中,当我切换标签时,按钮仍然包含在第二个标签中。我尝试了floatingbutton.show()并隐藏在我的标签更改监听器中但没有用。任何帮助将不胜感激。我的activity_main.xml
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerlayout" android:layout_height="match_parent"
android:layout_width="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.pegasus.tabstutorial.MainActivity">
<include
android:id="@+id/app_bar"
layout="@layout/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<com.pegasus.tabstutorial.SlidingTabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primaryColor" />
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:src="@mipmap/ic_launcher"
app:layout_anchor="@+id/appbarLayout"
app:layout_anchorGravity="bottom|right|end"
android:layout_marginBottom="37dp"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
<fragment
android:layout_width="280dp"
android:layout_height="wrap_content"
tools:layout="@layout/fragment_navigation_drawer"
android:id="@+id/navDrawer"
android:layout_gravity="start"/>
</android.support.v4.widget.DrawerLayout>`
和我的home_tab.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="You Are In Tab Home Tab"
android:id="@+id/textView"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>