當前位置:首頁 » 安卓系統 » android開發標題欄

android開發標題欄

發布時間: 2022-09-25 00:20:29

Ⅰ Android開發如何去除標題欄title

方法1:每個Activity都有一個onCreate方法,如下

1
2
3
4

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.history);
}

在其中加入一下代碼即可去除標題欄

1
2
3
4
5

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄,一定要在setContentView之前
setContentView(R.layout.history);
}

方法2:在manifest.xml中配置

1
2
3

<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"> <!--NoTitleBar就是沒有標題欄 -->

除了沒有標題欄以外,開發者還可以自定義標題欄,讓應用更加美觀

Ⅱ android開發中如何去掉標題欄

/步驟

新建的Android項目,在頁面中都默認會有標題欄,影響美觀,要怎麼去掉呢!

打開項目文件AndroidManifest.xml ,打開Application選擇TAB頁,在頁面下方的Application Nodes中點選擇相應的類, 配置右側的Theme屬性。

3
在彈出選擇框中點選"system Resources",選擇Theme.NoTitleBar項目,然後重新打開頁面就行了。

Ⅲ android開發如何去除標題欄title

每個Activity都有一個onCreate方法,如下
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.history);
}在其中加入一下代碼即可去除標題欄

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄,一定要在setContentView之前
setContentView(R.layout.history);
}

方法2:在manifest.xml中配置
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">

除了沒有標題欄以外,開發者還可以自定義標題欄,讓應用更加美觀

Ⅳ Android開發如何去除標題欄title

方法1:每個Activity都有一個onCreate方法,如下

java">publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.history);
}

在其中加入一下代碼即可去除標題欄

publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄,一定要在setContentView之前
setContentView(R.layout.history);
}


方法2:在manifest.xml中配置

<applicationandroid:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"><!--NoTitleBar就是沒有標題欄-->


除了沒有標題欄以外,開發者還可以自定義標題欄,讓應用更加美觀

Ⅳ android開發中怎麼去掉標題欄

去除標題欄title其實非常簡單,他有兩種方法,一種是在代碼中添加,另一種是在AndroidManifest.xml中添加:

1、在代碼中實現:
在此方法setContentView(R.layout.main)之前加入:
requestWindowFeature(Window.FEATURE_NO_TITLE);標題欄就沒有了。

2、在AndroidManifest.xml中實現:
注冊Activity時加上如下的一句配置就可以實現。
<activity android:name=".Activity"
android:theme="@android:style/Theme.NoTitleBar"
></activity>

Ⅵ Android開發如何去除標題欄title

方法1:每個Activity都有一個onCreate方法,如下
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.history);
}

在其中加入一下代碼即可去除標題欄

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄,一定要在setContentView之前
setContentView(R.layout.history);
}

方法2:在manifest.xml中配置
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"> <!--NoTitleBar就是沒有標題欄 -->

除了沒有標題欄以外,開發者還可以自定義標題欄,讓應用更加美觀

Ⅶ android開發: 怎樣去掉應用程序中的標題欄求解答

樓主,這個問題我前幾天剛碰到過,剛剛調完。你不要在程序中寫這一句requestwindowfeature(window.feature_no_title);,把它換為
actionbar
actionbar=getsupportactionbar();
actionbar.hide();這兩句就行了,這樣你在標題欄就被隱藏起來,而且你點擊menu鍵也不會出錯了!你試一下,我的api也是19,我這樣寫就解決了。我的應用是一定要extends
actionbaractivity,所以最後只能找到這種方法,不能把它改為extends
activity.

Ⅷ android開發中如何自定義標題欄

Android程序默認的Activity標題欄只能顯示一段文字,而且不能改變它的布局、顏色、標題欄的高度等。如果想要在標題欄加上個圖標、button、輸入框、進度條、修改標題欄顏色等,只能使用自定義的標題欄。自定義標題欄可以通過在onCreate函數中添加以下代碼來實現,需要注意的是代碼的順序必須按照下面的樣式,否則將無效。
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.mainactivity); //Activity的布局
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.titlebar); //標題欄的布局
雖然上面這樣可以在標題欄加入一些控制項,但是仍然不能改變標題欄的高度、背景色,要想達到這個目的,只能使用theme(主題)。因此往project里先添加一個style。改變背景色修改android:windowTitleBackgroundStyle的值,改變標題欄高度則修改android:windowTitleSize的值。下面是一個示例:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomWindowTitleBackground">
<item name="android:background">#</item>
</style>
<style name="activityTitlebar" parent="android:Theme">
<item name="android:windowTitleSize">32dp</item>
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>
</resources>
接著再修改AndroidManifest.xml文件,找到要自定義標題欄的Activity,添加上android:theme值,比如:

Java代碼

<activity android:name=".MainActivity" android:theme="@style/activityTitlebar">
<activity android:name=".MainActivity" android:theme="@style/activityTitlebar">

android:theme值就是上面那個style.xml文件里定義的一個style的name值。

按照以上的步驟,修改標題欄布局、高度、背景色的功能就實現了。

Ⅸ Android開發如何去除標題欄title

android中取出標題欄,主要是通過設置windows的模式,可以通過在主配置文件或者代碼中進行設置:

1.使用Window.FEATURE_NO_TITLE設置沒有標題,當然也有很多其他屬性:

publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題欄,一定要在setContentView之前
setContentView(R.layout.history);
}

2.在android工程中的主配置文件manifest.xml中配置

<applicationandroid:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"><!--NoTitleBar就是沒有標題欄-->


除了沒有標題欄以外,開發者還可以自定義標題欄,如下很多屬性的解釋:

1.DEFAULT_FEATURES:系統默認狀態,一般不需要指定

2.FEATURE_CONTEXT_MENU:啟用ContextMenu,默認該項已啟用,一般無需指定

3.FEATURE_CUSTOM_TITLE:自定義標題。當需要自定義標題時必須指定。如:標題是一個按鈕時

4.FEATURE_INDETERMINATE_PROGRESS:不確定的進度

5.FEATURE_LEFT_ICON:標題欄左側的圖標

6.FEATURE_NO_TITLE:吳標題

7.FEATURE_OPTIONS_PANEL:啟用「選項面板」功能,默認已啟用。

8.FEATURE_PROGRESS:進度指示器功能

9.FEATURE_RIGHT_ICON:標題欄右側的圖標

Ⅹ android開發中如何自定義標題欄

manifest文件中定義無標題欄的主題,然後自己用TextView做個標題欄。

熱點內容
中國銀行查詢密碼是什麼 發布:2025-01-16 02:33:20 瀏覽:791
堅果pro錄音文件夾 發布:2025-01-16 02:31:46 瀏覽:938
支付寶的登錄密碼忘記了如何改 發布:2025-01-16 02:30:30 瀏覽:221
解壓作業泥 發布:2025-01-16 02:28:02 瀏覽:806
我的世界rpg伺服器空島 發布:2025-01-16 02:26:49 瀏覽:90
ps腳本函數 發布:2025-01-16 02:15:28 瀏覽:480
android顯示行數據 發布:2025-01-16 02:07:40 瀏覽:963
壓縮皇冠 發布:2025-01-16 01:51:27 瀏覽:274
全鍵盤編程鍵盤 發布:2025-01-16 01:38:59 瀏覽:422
尾貨棉服直播間腳本 發布:2025-01-16 01:21:45 瀏覽:228