如何让标题栏文字居中、

 以下三句代码放到oncreat中即可
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.title);

注意3句代码的顺序
主要思想是通过一个XML实现对titile栏的位置控制
title.xml

xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_gravity="center">
                 android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="textTitle" />            

你可能感兴趣的:(android)