我在我的活动中复制粘贴了教程 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>