如何在操作栏

时间:2016-03-22 07:19:00

标签: android android-layout android-actionbar

如何在操作栏中间处理工具栏导航和标题?
这是形象,请帮帮我,

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以尝试以下代码:

 <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbar_other"
    style="@style/ToolBarStyle.Event"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:minHeight="?attr/actionBarSize">

    <TextView
        android:id="@+id/toolbar_other_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="Support"
        android:textColor="@color/white_color"
        android:textSize="@dimen/slection_item_size"
        android:textStyle="bold" />

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

我使用了这段代码。正在开发我的应用程序。