• 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"

  • 相关阅读:
    开发工具 内存,性能检测工具
    数据结构 二分法查找
    C语言 goto语句
    C语言 结构体中的零长度数组
    C语言 结构体(联合体)对齐规则
    C++ STL堆操作
    C语言 sscanf用法详解
    Sword 内核队列二
    Sword 内核队列一
    Sword libcurl回调函数相关知识
  • 原文地址:https://www.cnblogs.com/wizzhangquan/p/3065514.html
Copyright © 2020-2023  润新知