天天看點

Android-自定義标題欄

Android-自定義标題欄

2014年4月25日 分享知識點

近期也比較多事情,想發發部落格就是心有餘而力不足

Android-自定義标題欄

,本篇博文主要教大家如何實作自定義标題欄,很簡單,那麼聰明的你一下就看懂。

有興趣可以加一下 群号是299402133,裡面有豐富的學習資源,志同道合的你,一定會有所收獲的。

實作步驟

* 1、給自定義标題提供一個界面 

* 2、将自定義标題應用給Activity視窗 

* 3、把android系統為Activity設定的預設主題改為自己的主題

效果圖:

Android-自定義标題欄

代碼下載下傳: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>