Android的全屏问题

SDK12 的全屏问题,我在API10下的工程是全屏的,但是用12的来run确发生了切割的现象。即不是全屏了!!!!!!

其他的一些全屏的属性我也设置了:theme="@android:style/Theme.NoTitleBar.Fullscreen",BUt nothing changed!!!!!!!

Checked out the mainfest.xml again , Found that I should add the following things:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.android.tian"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="12" />

...

...

...

</....>

你可能感兴趣的:(android,api)