软件编程
位置:首页>> 软件编程>> Android编程>> Android 实现全屏和无标题栏的显示

Android 实现全屏和无标题栏的显示

作者:lqh  发布时间:2023-08-23 14:24:23 

标签:Android,全屏显示,无标题栏

在Android实现没有标题栏的方法有两种:

在代码中添加


requestWindowFeature(Window.FEATURE_NO_TITLE);

在清单文件AndroidManifest.xml中添加


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

具体的代码如下:

第一种:


MainActivity.java
package com.lingdududu.test;

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;

public class MainActivity extends Activity {
/** Called when the activity is first created. */
private boolean catchHomeKey = false;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);

}
}

第二种:


AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lingdududu.test"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MainActivity"
  android:label="@string/app_name"
  android:theme="@android:style/Theme.NoTitleBar" >
 <intent-filter>
 <action android:name="android.intent.action.MAIN" />
 <category android:name="android.intent.category.LAUNCHER" />
 </intent-filter>
</activity>

</application>
</manifest>

效果图:

Android 实现全屏和无标题栏的显示

如果想让窗口全屏显示:

将下面两段代码分别替换上面的两段设置无标题的代码就可以了


getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN ,  
 WindowManager.LayoutParams. FLAG_FULLSCREEN);

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

效果图:

Android 实现全屏和无标题栏的显示

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com