Android-自定义标题栏

Android-自定义标题栏


2014年4月25日 分享知识点

近期也比较多事情,想发发博客就是心有余而力不足睡觉,本篇博文主要教大家如何实现自定义标题栏,很简单,那么聪明的你一下就看懂。

有兴趣可以加一下 群号是299402133,里面有丰富的学习资源,志同道合的你,一定会有所收获的。

实现步骤

* 1、给自定义标题提供一个界面 

* 2、将自定义标题应用给Activity窗口 
* 3、把android系统为Activity设置的默认主题改为自己的主题

效果图:

代码下载:http://download.csdn.net/detail/wwj_748/7249585


/02_CustomTitle/res/layout/constom_title.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/rectangle"
    android:orientation="horizontal" >

    <!-- 指定背景,该背景自己画的 -->

    <TextView
        style="@android:style/TextAppearance.Medium"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:text="IT_xiao小巫"
        android:textColor="#ffffff"
        android:textSize="14sp" />

</LinearLayout>


这里使用到了一个图像资源,是在drawable目录下的:

/02_CustomTitle/res/drawable/rectangle.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <!-- 定义渐变色 -->
    <gradient
        android:angle="270"
        android:endColor="#80FF00FF"
        android:startColor="#FFFF0000" />
    <!-- 定义控件内容到边界的距离(到四条边界的距离都是2) -->
    <padding
        android:bottom="2dp"
        android:left="2dp"
        android:right="2dp"
        android:top="2dp" />
    <!-- 定义圆角 -->
    <corners android:radius="8dp" />

</shape>



/02_CustomTitle/src/com/wwj/constomtitle/MainActivity.java
package com.wwj.constomtitle;

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;

/**
 * 1、给自定义标题提供一个界面 
 * 2、将自定义标题应用给Activity窗口 
 * 3、把android系统为Activity设置的默认主题改为自己的主题
 * 
 * @author wwj
 * 
 */
public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		
		// 指定使用自定义标题
		requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
		setContentView(R.layout.activity_main);
		// 设置窗口的自定义标题布局文件
		getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.constom_title);
		
	}


}

修改默认样式

 <!-- 该样式继承系统的默认样式 -->
    <style name="customTheme" parent="android:Theme">

        <!-- 设置标题前景色为透明 -->
        <item name="android:windowContentOverlay">@drawable/nocolor</item>
        <!-- 设置标题高度为44dp -->
        <item name="android:windowTitleSize">44dp</item>
        <!-- 设置标题背景色 -->
        <item name="android:windowTitleBackgroundStyle">@style/customBg</item>
    </style>
    <!-- 定义一个背景样式 -->
    <style name="customBg">
        <item name="android:background">@drawable/rectangle</item>
    </style>


/02_CustomTitle/res/values/drawable.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!-- 定义一个透明色 -->
    <drawable name="nocolor">#00000000</drawable>

</resources>


在AndroidManifest.xml设置主题
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.wwj.constomtitle"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/customTheme" >
        <activity
            android:name="com.wwj.constomtitle.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


 







  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小巫技术博客

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值