2015-11-23 24 views
6

ホームアイコン/ボタンを持つツールバーを作成しようとしています。そのため、ユーザーはホームに戻ることができます。Androidツールバーのホームボタンが表示されない

この私のコードです:

のAndroidManifest.xml

<activity 
      android:name=".SettingsActivity" 
      android:noHistory="true" 
      android:theme="@style/AppTheme"> 
     <meta-data 
       android:name="android.support.PARENT_ACTIVITY" 
       android:value=".MainActivity"/> 
</activity> 

toolbar.xml:

<android.support.v7.widget.Toolbar 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_height="wrap_content" 
    android:layout_width="match_parent" 
    android:background="@color/ColorPrimary" 
    android:elevation="2dp" 
    android:theme="@style/Base.ThemeOverlay.AppCompat.Dark"/> 

settings_activity.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:orientation="vertical" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"> 

<include 
     android:id="@+id/tool_bar" 
     layout="@layout/toolbar" 
     android:layout_height="wrap_content" 
     android:layout_width="match_parent"/> 
</LinearLayout 

SettingsActivity.java

@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.settings_activity); 

    toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.tool_bar); 
    setSupportActionBar(toolbar); 
    getSupportActionBar().setDefaultDisplayHomeAsUpEnabled(true); 
    getSupportActionBar().setHomeButtonEnabled(true); 
} 
@Override 
public void onItemSelected(AdapterView<?> adapterView, View view, int i, long l) { 
} 

@Override 
public void onNothingSelected(AdapterView<?> adapterView) { 
} 

私のアプリケーション名とUP /ホームボタンは一切表示されていません。

getSupportActionBar().setDefaultDisplayHomeAsUpEnabled(true); 

あなたは

答えて

5

変更にこの私を助けてくださいすることができ

getSupportActionBar().setDisplayShowHomeEnabled(true); 
getSupportActionBar().setDisplayHomeAsUpEnabled(true); 
+1

ありがとうございました。これで解決しました。私のレポが非常に制限されている原因をアップヴォートすることが可能です...私は別の質問があり、それを投稿することができません:( – mp3por

関連する問題