2016-10-08 14 views
0

私のツールバーのタイトルが表示されていません。ツールバーのタイトルが表示されないのはなぜですか?

は、ここに私のxmlです:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
tools:context="com.mddri_.myeats.main._MainActivity"> 

<android.support.v7.widget.Toolbar 
    android:id="@+id/toolbar_main" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true" 
    android:background="@color/colorPrimary" 
    android:elevation="6dp" 
    android:minHeight="?attr/actionBarSize" 
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
    android:title="@string/app_label" 
    android:titleTextColor="@color/textColor" 
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/> 

<android.support.design.widget.TabLayout 
    android:id="@+id/tab_layout" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    app:tabMode="scrollable" 
    android:layout_below="@+id/toolbar_main" 
    android:background="@color/colorPrimary" 
    /> 
<android.support.v4.view.ViewPager 
    android:id="@+id/pager" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_below="@+id/tab_layout"/> 

私は私のJavaコードでツールバーを参照しませんが、私はあなたがそれを必要とする場合ということをお見せすることができます。 android:title="desired_title"を使用するだけで、ツールバーのタイトルを設定できるはずです。ツールバーには、正しい色とサイズが表示されていますが、タイトルは表示されません。

+0

try getSupportActionBar()。setTitle(title); – darwin

答えて

1

以下を使用してください。

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar_main); 
setSupportActionBar(toolbar); 
getSupportActionBar().setTitle("Title"); 
+0

このコードは 'setSupportActionBar(topToolBar);でエラーを返します。 '' java.lang.RuntimeException:アクティビティを開始できませんComponentInfo {com.mddri_.myeats/com.mddri_.myeats.main._Main Activity}:java.lang.IllegalStateException:このアクティビティには、インテリア。代わりにWindow.FEATURE_SUPPORT_ACTION_BARを要求し、ツールバーを使用するためにテーマでwindowActionBarをfalseに設定してください。 ' –

+0

エラーが説明しているように、ツールバーの設定を試みる前にデフォルトのアクションバーをfalseに設定しませんでした。 'windowActionBar'がfalseに設定されたスタイル、またはNoActionBar(例えば、' Theme.AppCompat.Light.NoActionBar')で親を継承するスタイルを使用して、アクティビティのテーマを宣言します。エラーを見て、そこにそれに答えているトンがあります。 :] –

関連する問題