自定义ActionBar中的Android中心textview水平和垂直使用linearlayout

时间:2015-03-20 23:28:39

标签: android xml android-actionbar textview

我几个小时后试图将我的标题水平放在操作栏中。这是我的代码:

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/actionBar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:baselineAligned="false"
            android:layout_gravity="center"
            android:gravity="center">

            <TextView 
                 android:id="@+id/activityTitle"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:textSize="20sp"
                android:textColor="#FFFFFF" />
    </LinearLayout>

这是我onCreate()中的activity代码:

        this.getActionBar().setDisplayShowCustomEnabled(true);
        this.getActionBar().setDisplayShowTitleEnabled(false);

        LayoutInflater inflator = LayoutInflater.from(this);
        View v = inflator.inflate(R.layout.custom_action_bar, null);

        Typeface tf = Typeface.createFromAsset(getAssets(),"font/myfont.ttf");
        ((TextView)v.findViewById(R.id.activityTitle)).setTypeface(tf);
        ((TextView)v.findViewById(R.id.activityTitle)).setText("Test");

        getActionBar().setCustomView(v);
        getActionBar().setDisplayShowHomeEnabled(false);

隐藏操作栏图标并使用正确的字体标题,但它只是垂直居中,而不是水平居中。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您可以使用RelativeLayout和属性

android:layout_centerHorizontal="true"    

android:layout_centerVertical="true"

例如:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/actionBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/activityTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="Jorgesys was here!"
        android:textColor="#FFFFFF"
        android:textSize="20sp" />

</RelativeLayout>