Android之自訂標題

來源:互聯網
上載者:User

標籤:

  我們知道我們建立的每一個Activity,系統預設為我們提供了一下黑色的標題,本篇我將帶領大家接觸一下如何?自訂標題樣式。相比系統為我們提供的樣式,自訂標題可以滿足我們唯心所欲的自訂設計,使我們的介面看上去更加的高端上檔次,以便更好的吸引使用者的使用。下面開始今天的內容介紹:

  1、既然是自訂標題樣式,首先我們需要設計一個自訂標題布局,通過這個布局檔案,我們可以隨心所欲的設計我們的標題樣式(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:orientation="horizontal"    >    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:textColor="#aa0000"        android:text="這是我的自訂標題"         />    <Button         android:id="@+id/button"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="更多"        /></LinearLayout>

  2、寫好布局檔案了,下面我們開始設計標題的樣式,項目res目錄下styles.xml:

<resources>    <style name="itcastTheme" parent="android:Theme">         <item name="android:windowContentOverlay">@color/nonecolor</item>         <item name="android:windowTitleSize">44dp</item><!-- 設定自訂標題的寬度 -->         <item name="android:windowTitleBackgroundStyle">@style/itcastbg</item><!-- 自訂標題的樣式 -->    </style>        <style name="itcastbg">        <item name="android:background">@drawable/rectangle</item>    </style></resources>

  3、紅色字型部分,是我通過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="#1DC9CD"        android:startColor="#A2E0FB" />    <padding        android:left="2dp"        android:top="2dp"        android:right="2dp"        android:bottom="2dp" /></shape>

  4、到這裡我麼就可以開始修改我們的主Activity:

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.title);//設定我們自訂標題        Button  mybutton = (Button)findViewById(R.id.button);        mybutton.setOnClickListener(new OnClickListener() {            @Override            public void onClick(View v) {                Toast.makeText(MainActivity.this, "盡請期待", Toast.LENGTH_SHORT).show();            }        });    }}

  需要注意的是紅色部分必須寫在引用布局檔案之前,不然達不到效果。

  5、最後我們需要在AndroidManifest.xml檔案中,為我們的Activity設定一下樣式:

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="cn.edu.hpu.activity_title"    android:versionCode="1"    android:versionName="1.0" >    <uses-sdk        android:minSdkVersion="8"        android:targetSdkVersion="21" />    <application        android:icon="@drawable/ic_launcher"        android:label="@string/app_name">        <activity            android:name=".MainActivity"             android:theme="@style/itcastTheme">            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>    </application></manifest>

  好了,關於Android自訂標題的介紹就說完了,感興趣的小童鞋可以實現一下。新手學習,高手交流。

Android之自訂標題

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.