• Android中去掉标题的方法总结


    方法一:也一般入门的时候经常使用的一种方法在setContentView()方法的前面插入代码:

    requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏 

    package com.example.helloword;
    
    import android.os.Bundle;
    import android.app.Activity;
    import android.view.Menu;
    import android.view.Window;
    import android.view.WindowManager;
    
    public class MainActivity extends Activity {
    
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		requestWindowFeature(Window.FEATURE_NO_TITLE);
    		getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
    				WindowManager.LayoutParams.FLAG_FULLSCREEN);
    		setContentView(R.layout.activity_main);
    	}
    
    }
    

    方法二:在AndroidManifest.xml文件中定义去掉整个应用的标题栏:<application    android:icon="@drawable/icon"    android:label="@string/app_name"    android:theme="@android:style/Theme.NoTitleBar">不过有时候不需要去掉整个程序的应用,只想去掉一个的时候就在Activity中。 

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


    方法三:在res/values目录下面新建一个style.xml的文件这种方法是有经验的开发者最喜欢的方法,因为它把功能分开的;对于后期的维护非常方便。个人建议用第三种方法:

    styleAndroidManifest.xml

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

    <resources>    

    <style name="concealTitle">        

    <item name="android:windowNoTitle">true</item>   

     </style>

    </resources>

    定义完了一个style,接下来就是在AndroidManifest.xml中使用了:<application    android:icon="@drawable/icon"    android:label="@string/app_name"    android:theme="@style/concealTitle"> 

    <?xml version="1.0" encoding="UTF-8" ?>
    <resources>    
    	<style name="concealTitle">        
    		<item name="android:windowNoTitle">true</item>   
    	</style>
    </resources>

        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/concealTitle" >
            <activity
                android:name="com.example.helloword.MainActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>



  • 相关阅读:
    CentOS7----Linux Root忘记,进入救援模式更改密码(两种方法!)
    Linux/CentOS7install PackageError: Loaded plugins: fastestmirror
    LinuxCentOSamba7关闭SELinux重新启动失败出现:Failed to load SElinux policu freezing
    Github Page + Hexo 搭建个人博客
    Selenium的使用
    Linux下使用Selenium进行自动化测试
    Python学习-网络编程
    Python学习-多线程和多进程
    Python学习-从面向对象开始
    Linux安装Jupyter并且远程访问
  • 原文地址:https://www.cnblogs.com/lanzhi/p/6469784.html
Copyright © 2020-2023  润新知