中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Android項目中自定義title

發布時間:2020-11-26 15:56:57 來源:億速云 閱讀:212 作者:Leah 欄目:移動開發

這篇文章給大家介紹如何在Android項目中自定義title,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

首先編寫title的布局文件,title.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg_title"
android:gravity="center_vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/title_logo"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:textSize="20sp"
android:layout_marginLeft="80dip"
android:textColor="#ffffff"
/>
</LinearLayout>

然后在Activity的onCreate()里加上這三句話:

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.title);

需要注意的是這三句話的順序不能變。到這里只是改變了title的布局,下面改變背景和高度,這就需要改變Activity的theme。

在values文件夾下新建文件style.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomWindowTitleBackground">
<item name="android:background">@drawable/bg_title</item>
</style>
<style name="title_style" parent="android:Theme">
<item name="android:windowTitleSize">44dip</item>
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>
</resources>

最后在AndroidManifest.xml里面加上:

<activity android:name=".sysinfo"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/title_style"
>

關于如何在Android項目中自定義title就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

离岛区| 宁安市| 公安县| 麟游县| 贵定县| 德兴市| 永平县| 淅川县| 南木林县| 揭东县| 万源市| 襄樊市| 连州市| 清镇市| 高碑店市| 乌兰县| 武定县| 宝山区| 台湾省| 沁阳市| 怀仁县| 天镇县| 商水县| 承德市| 漳平市| 星座| 永善县| 勐海县| 沅江市| 洱源县| 清水县| 镇坪县| 临汾市| 高雄市| 玉溪市| 原平市| 灯塔市| 蚌埠市| 麻城市| 江安县| 江口县|