溫馨提示×

溫馨提示×

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

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

Android實(shí)現(xiàn)全屏顯示的方法

發(fā)布時(shí)間:2020-06-10 07:08:02 來源:網(wǎng)絡(luò) 閱讀:469 作者:向往宇宙 欄目:移動(dòng)開發(fā)

Android實(shí)現(xiàn)全屏顯示的方法

我們都知道在Android中某些功能的實(shí)現(xiàn)往往有兩種方法:一種是在xml文件中設(shè)置相應(yīng)屬性,另一種是用代碼實(shí)現(xiàn)。同樣Android實(shí)現(xiàn)全屏顯示也可以通過這兩種方法實(shí)現(xiàn):

1、在AndroidManifest.xml的配置文件里面的<activity>標(biāo)簽添加屬性:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

2、在Activity的onCreate()方法中的super()和setContentView()兩個(gè)方法之間加入下面兩條語句:

this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標(biāo)題欄

this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息欄

示例

方法一:

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="test.ts.wader.p_w_picpath"

    android:versionCode="1"

    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="7" />

    <application

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name" >

        <activity

           android:label="@string/app_name"

           android:name=".ImageListActivity"

android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

            <intent-filter >

                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>

</manifest>

 

方法二:

public class ImageListActivity extends Activity implements OnItemClickListener {

    @Override

    public void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

       requestWindowFeature(Window.FEATURE_NO_TITLE); //設(shè)置無標(biāo)題

       getWindow().setFlags(WindowManager.LayoutParams.FILL_PARENT, WindowManager.LayoutParams.FILL_PARENT);  //設(shè)置全屏  

       setContentView(R.layout.p_w_picpath_list_layout);

    }

}


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

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

AI