zoukankan      html  css  js  c++  java
  • Android & 去掉标题栏

    AndroidManifest.xml
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.zachary01"
        android:versionCode="1"
        android:versionName="1.0" >
        
        <uses-sdk
            android:minSdkVersion="7"
            android:targetSdkVersion="15" />
    
        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name="com.example.zachary01.MainActivity"
                android:label="@string/app_name"
                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>
            <activity    android:name="com.example.zachary01.PlayActivity"
                android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
              
            </activity>       
            <service    android:name="com.example.service_playcontrol.PlayerService"></service>
        </application>
    
    </manifest>

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

  • 相关阅读:
    Yarn的运行原理(执行流程)
    Hive 表类型简述
    hive 表类型
    Hadoop小知识点总结1
    电商交易项目案例
    乘用车辆和商用车辆销售数据分析
    搜狗搜索日志分析系统
    mysql group by 对多个字段进行分组
    group by
    输出GPLT
  • 原文地址:https://www.cnblogs.com/wizzhangquan/p/3065514.html
Copyright © 2011-2022 走看看