Android:如何集中活动标签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android:如何集中活动标签相关的知识,希望对你有一定的参考价值。
我想让标签(我的应用程序)在操作栏中集中对齐。我应该怎么做?
这是当前的屏幕:
答案
如果你正在使用Toolbar
,你可以试试这个:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My App"
android:layout_gravity="center"
android:id="@+id/toolbar_title" />
</android.support.v7.widget.Toolbar>
如果你正在使用ActionBar
试试这个:
在你的onCreate()
中添加:
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(R.layout.your_LAYOUT);
和your_LAYOUT
应该像:
<?xml version="1.0" encoding="utf-8"?>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="myApp"
android:id="@+id/tvtitle" />
以上是关于Android:如何集中活动标签的主要内容,如果未能解决你的问题,请参考以下文章