为什么我的画布背景不是全屏(Android)?

时间:2013-03-02 09:05:42

标签: android android-layout android-canvas android-xml

我复制粘贴了我的活动教程rocketscissorpaper的方法,但是 问题是,当我运行我的代码时,画布背景不会出现全屏,我看到了 两个项目之间没有区别,即使是xml也是一样的。我错过了什么,这是 xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/linearLayout"
>


  <FrameLayout


android:layout_width="match_parent"


android:layout_height="match_parent"


>

 <com.show.showhidebutton.Game
     android:id="@+id/surfaceView" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"

     />


     </FrameLayout>

and here is the manifest file:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.show.showhidebutton"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="Show Hide Button"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".Logo"></activity>
    <activity android:name=".Story"></activity>
    <activity android:name=".Survival"></activity>
    <activity android:name=".Store"></activity>
</application>

1 个答案:

答案 0 :(得分:0)

<application
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
  

机器人:主题= “@机器人:风格/ Theme.NoTitleBar.Fullscreen”

添加这段代码将使您的应用程序全屏显示,隐藏通知栏。

希望它有所帮助。