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"

  • 相关阅读:
    Socket规划(1)
    hdu 2391 Filthy Rich
    UDP议定书图像高速传输无损失程序
    C# 通过豆瓣网络编程API获取图书信息
    OS调度算法常用摘要
    mysql回想一下基础知识
    2015第37周三
    2015第37周二
    2015第37周一
    2015第37周一struts2 jstl 标签
  • 原文地址:https://www.cnblogs.com/wizzhangquan/p/3065514.html
Copyright © 2011-2022 走看看