将图标放在文本上方和选项卡的中央

Place icons above the text and in the center of the tab

The layout image

嗨!我正在使用 ActionBar 选项卡、一个 activity 和四个片段,我想做的是将图标和文本放在选项卡的中央。

我试过 this technique 但没用。我还尝试将 name="android:gravity 设置为居中。另外,我知道这不是最佳做法,但我尝试向选项卡添加正确的填充。我在 TabView 样式中使用垂直方向来获得文本上方的图标。

您必须创建布局:abs_layout

 <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
    android:layout_width="110dp"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="Title"
    android:textColor="#ffffff"
    android:id="@+id/action_bar_title"
    android:textSize="18sp" /></RelativeLayout>

并在 OnCreate() 中添加此

getSupportActionBar().setCustomView(R.layout.abs_layout);