91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何在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

金乡县| 奉贤区| 商都县| 邯郸市| 定兴县| 云龙县| 镇安县| 博乐市| 大庆市| 洪泽县| 宝山区| 闸北区| 九台市| 精河县| 八宿县| 乐陵市| 东乌珠穆沁旗| 藁城市| 麻江县| 洪雅县| 咸宁市| 凉城县| 佛冈县| 高阳县| 冷水江市| 乃东县| 麟游县| 修水县| 娄底市| 收藏| 邛崃市| 宝应县| 临朐县| 始兴县| 铜梁县| 牟定县| 科技| 万全县| 疏勒县| 察雅县| 常德市|