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:如何集中活动标签的主要内容,如果未能解决你的问题,请参考以下文章

Android开发——UI_片段

Android中切换标签片段之间的延迟

如何在每个活动中保持标签可见

如何使用来自其他活动android的片段打开一个活动

我正在尝试在android studio上创建标签片段

在android中使用底部导航的最佳实践:活动与片段