zoukankan      html  css  js  c++  java
  • activity去标题栏操作&保留高版本主题

    方式一:每个类都需要去添加此代码
    在setContentView(R.layout.activity_splash);
    前设置以下代码
    requestWindowFeature(Window.FEATURE_NO_TITLE);

    方式二:统一去掉所有activity的头

    @android:style/Theme.Light.NoTitleBar方式去头,使用老版本主题样式
    修改默认样式文件为
    <style name="AppTheme" parent="AppBaseTheme">
    <!-- 在去头的同时,还保留高版本的样式主题 -->
    <item name="android:windowNoTitle">true</item>
    </style>

    activity去标题栏操作

     protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            //去除掉当前activity头title
            requestWindowFeature(Window.FEATURE_NO_TITLE);
            setContentView(R.layout.activity_splash);
    
        }

    保留高版本主题

    AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.itheima.mobilesafe74"
        android:versionCode="1"
        android:versionName="1.0" >
        <!-- android:versionCode 本地应用版本号1,版本号是2,有必要提示用户更新 -->
        <!-- android:versionName="1.0"  
                2.1.1:
                最后的一位:代表修复原有版本的bug
                倒数第二位:更新部分功能
                第一位:项目重大更新(代码重构,大部分功能添加,界面整体修改)-->
                
        <uses-sdk
            android:minSdkVersion="8"
            android:targetSdkVersion="17" />
        <!-- android:theme="@android:style/Theme.Light.NoTitleBar"  -->
        <uses-permission android:name="android.permission.INTERNET"/>
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
        
        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name="com.itheima.mobilesafe74.activity.SplashActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            <activity
                android:name="com.itheima.mobilesafe74.activity.HomeActivity"/>
        </application>
    
    </manifest>

    /res/values/styles.xml

       <!-- Application theme. -->
        <style name="AppTheme" parent="AppBaseTheme">
            <!-- 在去头的同时,还保留高版本的样式主题 -->
            <!-- All customizations that are NOT specific to a particular API-level can go here. -->
            <item name="android:windowNoTitle">true</item>
        </style>
  • 相关阅读:
    数值分析实验之常微分方程的数值解法(MATLAB实现)
    Hadoop 伪分布模式安装
    Word 如何标齐选项
    在windows上安装elasticsearch7.6
    《转载》python/人工智能/Tensorflow/自然语言处理/计算机视觉/机器学习学习资源分享
    使用fastai训练的一个性别识别模型
    小程序录音、上传、转格式、语音识别爬坑记(微信版本:6.6.7及以上)
    centos 7.0 下安装FFmpeg软件 过程
    用python实现matlib的 生成高斯模糊核
    opencv如何在jupyter notebook中显示图片
  • 原文地址:https://www.cnblogs.com/xufengyuan/p/6170688.html
Copyright © 2011-2022 走看看