我在我所創建的導航抽屜功能上有一個活動,其餘的我有使用教程 http://www.androidhive.info/2013/11/android-sliding-menu-using-navigation-drawer/如何工具欄上使用後退按鈕滑動抽屜式導航
現在的片段,我的問題是,我想,如果我瀏覽使用導航抽屜將除家庭以外的所有碎片(如照片,通知等)都顯示在後面,而不是顯示漢堡包圖標,還包含滑動導航。我無法實現這一點。也想改變工具欄後退按鈕的顏色。請幫忙。
我在我所創建的導航抽屜功能上有一個活動,其餘的我有使用教程 http://www.androidhive.info/2013/11/android-sliding-menu-using-navigation-drawer/如何工具欄上使用後退按鈕滑動抽屜式導航
現在的片段,我的問題是,我想,如果我瀏覽使用導航抽屜將除家庭以外的所有碎片(如照片,通知等)都顯示在後面,而不是顯示漢堡包圖標,還包含滑動導航。我無法實現這一點。也想改變工具欄後退按鈕的顏色。請幫忙。
要更換回按鈕顏色試試這個。
<style name="toolbar_theme" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="colorControlNormal">@color/arrow_color</item>
</style>
或
<style name="CustomTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorControlNormal">@color/arrow_color</item>
</style>
你可以做actionBarDrawerToggle.setHomeAsUpIndicator(R.drawable.ic_new_icon);
其中撥動你ActionBarDrawerToggle實例
要改變抽屜圖標後退箭頭使用:
MenuFragment fragment = new MenuFragment();
//disable the toggle menu and show up carat
theDrawerToggle.setDrawerIndicatorEnabled(false); // add this
getSupportFragmentManager().beginTransaction().replace(R.id.frag_layout,fragment).addToBackStack(null).commit();
添加該代碼在您的抽屜物品的Fr沒有家庭片段
agment交易要恢復的變化:
覆蓋onBackPressed()
在活動
@Override
public void onBackPressed() {
super.onBackPressed();
// turn on the Navigation Drawer image;
setDrawerIndicatorEnabled(true)
}
使用第二個 –
這可能是一些家長的主題問題不工作 –