2017-03-17 168 views
0

我已經寫了一段代碼作爲應用程序的一部分,我希望在操作欄/工具欄上實現後退按鈕,以便當按下按鈕時,將顯示前一頁(即當前頁面/片段之前的頁面/片段)。如何將後退按鈕添加到操作欄/工具欄

這是工具欄,DrawerLayout,NavigationView和getSupportActionBar()的代碼:

final DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); 
final NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view); 

android.support.v7.widget.Toolbar toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.toolbar); 
setSupportActionBar(toolbar); 
toolbar.setVisibility(View.VISIBLE); 
getSupportActionBar().setDisplayHomeAsUpEnabled(true); 
getSupportActionBar().setLogo(R.mipmap.ic_launcher); 
getSupportActionBar().setDisplayUseLogoEnabled(true); 
getSupportActionBar().setHomeButtonEnabled(true); 

我無法用動作條。出於某種原因(我不知道爲什麼),我的Android工作室/程序不會允許我使用ActionBar。所以我用set/getSupportActionBar()來代替它。

用於涉及此功能是:

@Override 
public boolean onCreateOptionsMenu(Menu menu) { 
    MenuInflater inflater = getMenuInflater(); 
    inflater.inflate(R.menu.menu_settings, menu); 
    return true; 
}   

@Override 
public boolean onOptionsItemSelected(MenuItem item) { 

    // Handle action bar item clicks here. The action bar will 
    // automatically handle clicks on the Home/Up button, so long 
    // as you specify a parent activity in AndroidManifest.xml. 

    int id = item.getItemId(); 

    switch (id) { 
     case android.R.id.home: 
      onBackPressed(); 
      return true; 
     default: 
      return super.onOptionsItemSelected(item); 
     } 
    }   

@Override 
public void onBackPressed() { 

    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); 
    if (drawer.isDrawerOpen(GravityCompat.START)) { 
     drawer.closeDrawer(GravityCompat.START); 
    } else { 
     super.onBackPressed();   
    } 
} 

我activity_main.xml中的文件是:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    android:id="@+id/activity_main" 
    android:orientation="vertical" 
    tools:openDrawer="start" 
    tools:context="com.example.albin.settings_menu.SettingsActivity"> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="#fff"> 

    <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:background="?attr/colorPrimary" 
      app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
      app:title="Settings"/> 

    <android.support.v4.widget.DrawerLayout 
      xmlns:android="http://schemas.android.com/apk/res/android" 
      xmlns:app="http://schemas.android.com/apk/res-auto" 
      xmlns:tools="http://schemas.android.com/tools" 
      android:id="@+id/drawer_layout" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 

     <FrameLayout 
     android:id="@+id/frame" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/toolbar"> 

     </FrameLayout> 

      <android.support.design.widget.NavigationView 
       xmlns:android="http://schemas.android.com/apk/res/android" 
       xmlns:app="http://schemas.android.com/apk/res-auto" 
       android:id="@+id/nav_view" 
       android:layout_width="wrap_content" 
       android:layout_height="match_parent" 
       android:layout_gravity="start" 
       android:fitsSystemWindows="true" 
       android:layout_marginTop="-24dp" 
       app:menu="@menu/options_menu" /> 


     </android.support.v4.widget.DrawerLayout> 

    </RelativeLayout> 
    </LinearLayout> 

的問題是,我不知道這是有用的代碼,其是無用的代碼,以及如何混合/連接/(爲其添加代碼)這些(代碼,方法,變量/對象,片段,xml佈局)以獲得期望的結果,也就是在動作上應用後退按鈕酒吧/工具欄。

上面的大部分代碼都是針對向上按鈕實現的,而不是後退按鈕。我在幾個地方看過,上下按鈕不一樣。

我嘗試了幾個在互聯網上的鏈接以及在這個網站上的鏈接,但沒有一個只是我所需要的。

希望有人可以給我一個明確的答覆......

回答

0

最簡單的方法是添加清單文件父活動爲開發者文檔建議。

<activity 
    android:name=".ChildActivity" 
    android:parentActivityName=".ParentActivity" > 

和Java代碼,你已經做到了,setSupportActionbar和setHomeAsUpEnabled。

編輯: 其必要添加了行動圖標是可見的,如 Android Developer Docs

+1

這是不正確的,至少如果您使用CollapsingToolbarLayout。 在清單中添加android:parentActivityName =「activityParentName」時不顯示箭頭後退按鈕,但是如果添加getSupportActionBar()。setDisplayHomeAsUpEnabled(true); getSupportActionBar()。setDisplayShowHomeEnabled(true);出現 –

+1

@EmmanuelGuther謝謝你的信息,你的正確我編輯了我的答案 – geniushkg

0

所以工具欄可添加靈活地修改標題欄在Android中提及。

至於爲什麼getActionBar不工作,你不得不使用getSupportActionBar是因爲你必須使用SupportLibrary。 SupportLibrary提供了對早期SDK版本的向後兼容性。

如果要廣泛修改標題欄/標題/動作欄 ,請使用工具欄,否則使用動作欄。

0

添加導航點擊收聽到工具欄,如下圖所示

toolbar.setNavigationOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View v) { 
      onBackPressed(); 
     } 
    }); 
2

實際上有這個問題,因爲你已經在RelativeLayout所以抽屜佈局上是重疊的補充工具欄佈局就是爲什麼你會不能夠點擊後退箭頭,我有解決您的佈局參見下面

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/activity_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    android:orientation="vertical"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="?attr/colorPrimary" 
     app:navigationIcon="@drawable/ic_back_black" 
     app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
     app:title="Settings" /> 

    <android.support.v4.widget.DrawerLayout 
     android:id="@+id/drawer_layout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <FrameLayout 
      android:id="@+id/frame" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@+id/toolbar" /> 

     <android.support.design.widget.NavigationView 
      android:id="@+id/nav_view" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_gravity="start" 
      android:fitsSystemWindows="true" 
      app:menu="@menu/options_menu" /> 
    </android.support.v4.widget.DrawerLayout> 
</LinearLayout> 
4

您可以在ToolBar後退圖標:

初始化ToolBar

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
setSupportActionBar(toolbar); 
  • 您可以使用drawable圖標爲一個後退按鈕。

    toolbar.setNavigationIcon(R.drawable.your_drawable_icon); 
    
    toolbar.setNavigationOnClickListener(new View.OnClickListener() { 
        @Override 
        public void onClick(View v) { 
         // what do you want here 
        } 
    }); 
    
  • 如果你不想使用drawable圖標,然後:

    getSupportActionBar().setDisplayHomeAsUpEnabled(true); 
    getSupportActionBar().setDisplayShowHomeEnabled(true); 
    
    toolbar.setNavigationOnClickListener(new View.OnClickListener() { 
        @Override 
        public void onClick(View v) { 
         // what do you want here 
        } 
    }); 
    
0

如果引用的操作欄中的一些動作,比如保存操作或共用一個,並且您優先於onOptionsItemSelected方法,那麼您需要定義當返回主頁按鈕被點擊時的行爲:

@Override public boolean onOptionsItemSelected(MenuItem item) { 
    switch (item.getItemId()) { 
     case R.id.action_save: 
     //save stuff 
     break; 

     //this is what you need to add to reference again back/home button 
     case android.R.id.home: 
     //do your stuff here, usually back to the home or close the current activity 
     getActivity().finish(); 
     break; 

     default: 
     break; 
    } 
    return true; 
相關問題