AndroidManifest.xml里
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.jacky.doso"
    android:versionCode="1"
    android:versionName="1.0" >    <uses-sdk
        android:minSdkVersion="15"
        android:targetSdkVersion="15" />
    </application></manifest>

解决方案 »

  1.   

    http://blog.csdn.net/nxh_love/article/details/40630087   你看看这个
      

  2.   

    你肯定修改了Application,activity的android:theme这个值了。最直观的效果去掉android:theme即可。还可以:application 的theme要是更改了,activity 中的主体也要更改,只能改成 默认的主体 ,然后在代码中设置主题就可以了
     <application
            android:name="com.MyApplication"
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
            <activity
                android:name=".MainActivity"
                android:label="@string/app_name"
                android:theme="@style/AppTheme">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
         
    如果Activity 向全屏可以或者去掉标题栏可以在代码中实现
      /*set it to be no title*/
            requestWindowFeature(Window.FEATURE_NO_TITLE);
           /*set it to be full screen*/
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);
      

  3.   

    你肯定修改了Application,activity的android:theme这个值了。最直观的效果去掉android:theme即可。还可以:application 的theme要是更改了,activity 中的主体也要更改,只能改成 默认的主体 ,然后在代码中设置主题就可以了
     <application
            android:name="com.MyApplication"
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
            <activity
                android:name=".MainActivity"
                android:label="@string/app_name"
                android:theme="@style/AppTheme">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
         
    如果Activity 向全屏可以或者去掉标题栏可以在代码中实现
      /*set it to be no title*/
            requestWindowFeature(Window.FEATURE_NO_TITLE);
           /*set it to be full screen*/
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);
      

  4.   

    你肯定修改了Application,activity的android:theme这个值了。最直观的效果去掉android:theme即可。还可以:application 的theme要是更改了,activity 中的theme也要更改,只能改成 默认的theme ,然后在代码中设置主题就可以了
     <application
            android:name="com.MyApplication"
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
            <activity
                android:name=".MainActivity"
                android:label="@string/app_name"
                android:theme="@style/AppTheme">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
         
    如果Activity 向全屏可以或者去掉标题栏可以在代码中实现
      /*set it to be no title*/
            requestWindowFeature(Window.FEATURE_NO_TITLE);
           /*set it to be full screen*/
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);