溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

分享:Android之自定義標(biāo)題

發(fā)布時(shí)間:2020-08-01 01:30:30 來源:網(wǎng)絡(luò) 閱讀:344 作者:鏡中小白 欄目:移動(dòng)開發(fā)

我們知道我們創(chuàng)建的每一個(gè)Activity,系統(tǒng)默認(rèn)為我們提供了一下黑色的標(biāo)題,本篇我將帶領(lǐng)大家接觸一下如何實(shí)現(xiàn)自定義標(biāo)題樣式。相比系統(tǒng)為我們提供的樣式,自定義標(biāo)題可以滿足我們唯心所欲的自定義設(shè)計(jì),使我們的界面看上去更加的高端上檔次,以便更好的吸引用戶的使用。下面開始今天的內(nèi)容介紹:

 

1、既然是自定義標(biāo)題樣式,首先我們需要設(shè)計(jì)一個(gè)自定義標(biāo)題布局,通過這個(gè)布局文件,我們可以隨心所欲的設(shè)計(jì)我們的標(biāo)題樣式(title.xml):

 

<?xmlversion="1.0" encoding="utf-8"?>
<LinearLayoutxmlns: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="這是我的自定義標(biāo)題"
       />
   <Button
       android:id="@+id/button"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="更多"
       />
 
</LinearLayout>

2、寫好布局文件了,下面我們開始設(shè)計(jì)標(biāo)題的樣式,項(xiàng)目res目錄下styles.xml

<resources>
 
   <style name="itcastTheme"parent="android:Theme">
        <itemname="android:windowContentOverlay">@color/nonecolor</item>
        <itemname="android:windowTitleSize">44dp</item><!-- 設(shè)置自定義標(biāo)題的寬度-->
        <itemname="android:windowTitleBackgroundStyle">@style/itcastbg</item><!--自定義標(biāo)題的樣式 -->
   </style>
   
   <style name="itcastbg">
       <itemname="android:background">@drawable/rectangle</item>
   </style>
 
</resources>

 

3、紅色字體部分,是我通過drawable文件下的rectangle.xml文件實(shí)現(xiàn)的一個(gè)標(biāo)題背景:

<?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);//設(shè)置我們自定義標(biāo)題
       Button  mybutton =(Button)findViewById(R.id.button);
       mybutton.setOnClickListener(new OnClickListener() {
           @Override
           public void onClick(View v) {
               Toast.makeText(MainActivity.this, "盡請(qǐng)期待",Toast.LENGTH_SHORT).show();
           }
       });
    }
}

 

需要注意的是紅色部分必須寫在引用布局文件之前,不然達(dá)不到效果。

 

5、最后我們需要在AndroidManifest.xml文件中,為我們的Activity設(shè)置一下樣式:

<?xml version="1.0" encoding="utf-8"?>
<manifestxmlns: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>
                <actionandroid:name="android.intent.action.MAIN" />
 
                <categoryandroid:name="android.intent.category.LAUNCHER" />
           </intent-filter>
       </activity>
   </application>
 
</manifest>

 

好了,關(guān)于Android自定義標(biāo)題的介紹就說完了,當(dāng)然,開發(fā)完APP也是需要進(jìn)行全方位的檢測:www.ineice.com


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI