安卓修改标题栏

稍微学习了一点,安卓标题栏的修改,对于不同的界面,可能会使用不同的标题

举个例子

第一步:

右键你的app ,New一个Android resource file

随意起一个文件名 style.xml 这个文件会出现在values文件夹下 内容如下:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="TitleBackgroundColor">    //这里实现的设置标题栏的背景颜色
        <item name="android:background">@color/selected_color</item>//这里的颜色需要自己写此处我引用了我项目中的颜色
    </style>
 <style name="titlestyle" parent="android:Theme">//这里就是对于标题栏的设置 name就是你所写的标题栏的"代表"
     <item name="android:windowTitleSize">40dip</item>//这是高度
     <item name="android:windowTitleBackgroundStyle">@style/TitleBackgroundColor</item>//这里是上面的写的背景色 注意name就大概了解意思了
 </style>
</resources>

第二步:

在你的清单文件 AndroidMainfest.xml 中, 找到你的application 在当中添加  

 android:theme="@style/titlestyle"    //这个就是第一步自己定义的“风格”==》你的标题栏

第三步:

开始自己设置你想要标题栏的样式:加入我想标题显示:我的标题栏    通过自己布局;

1.新建一个布局文件    title_home.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:orientation="vertical">

        <TextView
            android:id="@+id/textView19"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="我的标题栏"
            android:textSize="20dp"   //字体大小
            android:textColor="@color/encode_view" />//字体颜色需自己设置
    </LinearLayout>

</LinearLayout>

以上的布局可以通过预览效果看到,是一个居中显示的Textview 居中的字体是“我的标题栏”

第四步:也是最重要的一步(代码顺序)

进入你需要设置标题栏的那个activity中,

在oncreate方法中,你会看见setonContetnView这个方法,我们都知道这个是加载布局的:

当我们需要使用自己使用的标题栏时候就添加如下代码:顺序如下

        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);//添加这句:这里表达的意思为使用自定义标题栏
        setContentView(R.layout.settings);//这是加载的页面布局
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.title_home);//然后在加入这句话,这句话加载的R.layout."刚才你写的布局文件的名称"

最后,可是run一下看看效果了。

原文地址:https://www.cnblogs.com/dxk1019/p/7095531.html