私のツールバーのタイトルが表示されていません。ツールバーのタイトルが表示されないのはなぜですか?
は、ここに私の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"
を使用するだけで、ツールバーのタイトルを設定できるはずです。ツールバーには、正しい色とサイズが表示されていますが、タイトルは表示されません。
try getSupportActionBar()。setTitle(title); – darwin