我無法通過代碼行顯示和刪除工具欄。 它可以做到這一點? 如果我在一個片段,並希望短工具欄和ws加載後出現。 我試過以下手段無濟於事。無法控制工具欄的可見性
工具欄
toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
ActionBar actionBar = getSupportActionBar();
if(actionBar != null) {
actionBar.setDisplayShowTitleEnabled(false);
}
main_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/apk/res-auto"
android:id="@+id/DrawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:elevation="7dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar">
</include>
<FrameLayout
android:id="@+id/fragContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="fragContainer" />
</LinearLayout>
<RelativeLayout
android:layout_width="@dimen/drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start">
<android.support.v7.widget.RecyclerView
android:id="@+id/RecyclerView"
android:layout_width="@dimen/drawer_width"
android:layout_height="fill_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:background="@color/primary"
android:scrollbars="vertical">
</android.support.v7.widget.RecyclerView>
<LinearLayout
android:id="@+id/footer_menu"
android:layout_width="@dimen/drawer_width"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal" >
<ImageView
android:id="@+id/ivFooter"
android:layout_width="wrap_content"
android:layout_height="35dp"
android:layout_gravity="bottom|center"
android:maxWidth="690dp"
android:src="@drawable/rodape_menu"
android:layout_margin="5dp"/>
</LinearLayout>
</RelativeLayout>
</android.support.v4.widget.DrawerLayout>
toolbar.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:fitsSystemWindows="true"
app:elevation="4dp"
app:theme="@style/CustomActionBar"/>
CustomActionBar.xml
<item name="windowActionBar">false</item>
<!-- Support library compatibility -->
<item name="windowActionBarOverlay">true</item>
嘗試代碼
getSupportActionBar().hide();
getSupportActionBar().show();
findViewById(R.id.toolbar).setVisibility(View.GONE);
findViewById(R.id.toolbar).setVisibility(View.VISIBLE);
你能告訴我爲什麼你使用'ActionBar actionBar = getSupportActionBar();'???刪除它!您已經將工具欄設置爲您的操作欄。 –