Toolbar 标题居中

来源:互联网 发布:iphone清理缓存软件 编辑:程序博客网 时间:2024/06/05 17:54

Toolbar 在默认情况下标题是偏左的。

Toolbar 的xml文件中

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar_actionbar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/skyblue"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" >


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_gravity="center" 
        android:text="TEXT"
        android:textColor="@color/white"
        android:textSize="20sp"
        android:textStyle="bold"/>
</android.support.v7.widget.Toolbar>


在调用時要吧Toolbar默认的title设置为空

Toolbar mToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);
mToolbar.setTitle("");
setSupportActionBar(mToolbar);






0 0
原创粉丝点击