工具栏标题未显示

时间:2016-01-30 07:07:27

标签: android android-layout android-toolbar

我是Android新手并创建了一个自定义工具栏我在工具栏中设置了一个textview和一些图片,但它不可见.Below是代码

 and image of my emulator

我使用此链接进行教程 http://www.androidhive.info/2015/09/android-material-design-working-with-tabs/

<android.support.design.widget.CoordinatorLayout
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">


        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="130dp"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="85dp"
                android:background="?attr/colorPrimary">
                <!--app:layout_scrollFlags="scroll|enterAlways"-->
                <!--app:popupTheme="@style/ThemeOverlay.AppCompat.Light">-->

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/ToolBarTitle"
                    android:layout_gravity="bottom"
                    android:layout_marginBottom="35dp"
                    android:id="@+id/toolbar_title"
                    android:textColor="#FFFFFF"
                    android:textSize="17.3sp"
                    android:layout_marginLeft="127dp"

                    />

                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="6dp"
                    android:layout_gravity="bottom"
                    android:layout_marginBottom="50dp"
                    android:background="@drawable/icn_dropdown" />

                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="bottom"
                    android:layout_marginBottom="45dp"
                    android:layout_marginLeft="110dp"
                    android:background="@drawable/icn_options"/>
            </android.support.v7.widget.Toolbar>

            <android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="#f5f5f5"
                app:theme="@style/TabTheme"
                app:tabIndicatorColor="@color/colorPrimary"
                app:tabTextColor="@color/tab_text"/>
        </android.support.design.widget.AppBarLayout>

        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"  />


    </android.support.design.widget.CoordinatorLayout>

3 个答案:

答案 0 :(得分:1)

使用以下代码设置自定义标题栏的标题

Toolbar mToolbar = (Toolbar) findViewById(R.id.tool_bar);
setSupportActionBar(mToolbar);
getSupportActionBar().setTitle("Tittle");

答案 1 :(得分:1)

enter image description here

我做同样的事情,它对我来说很好:
尝试这样:

  <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="30dp"
    android:background="@color/ColorPrimary"
    android:elevation="4dp"
    android:theme="@style/ThemeOverlay.AppCompat.Light">

    <ImageView
        android:id="@+id/back"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:src="@drawable/arr" />


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_gravity="center"

        android:gravity="center"
android:textSize="20sp"
        android:text="New Post"
        android:textColor="#fff"
        />

    <TextView
        android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:clickable="true"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_gravity="right"
        android:layout_marginRight="10dp"
        android:gravity="right"
        android:textSize="15sp"
        android:text="Post"
        android:textColor="#fff"
        />


</android.support.v7.widget.Toolbar>

答案 2 :(得分:0)

尝试 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); getSupportActionBar(toolbar); toolbar.setTitle("required title");onCreate 如果您还需要图像,请尝试更改
           android:label="" android:icon=""文件的activity标记中的AndroidManifest.xml