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

时间:2015-03-07 18:53:38

标签: android android-styles

The layout image

嗨!我正在使用ActionBar标签,一个活动和四个片段以及我尝试做的是将图标和文字放在标签的中心。

我试过了this technique,但它没有用。我也尝试将name="android:gravity设置为中心。此外,我知道这不是最好的做法,但我尝试在标签上添加正确的填充。我在TabView样式中使用垂直方向来获取文本上方的图标。

1 个答案:

答案 0 :(得分:0)

您必须创建布局: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);