但是我正在尝试制作游戏,我无法弄清楚如何在游戏视图中使用xml文件来使用按钮,以便我可以定义按钮的用途。 Surface View类扩展到了Surface视图,并且正在实现可运行。
这是xml文件:
<knightnetwork.test2.GameView xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:orientation="vertical" >
<ImageButton
android:id="@+id/shootButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_marginEnd="256dp"
android:layout_marginBottom="25dp"
android:background="#50000000"
app:srcCompat="@drawable/shootbutton" />
<ImageButton
android:id="@+id/boostButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_marginEnd="159dp"
android:layout_marginBottom="27dp"
android:background="#50000000"
app:srcCompat="@drawable/boostbutton" />
<ImageButton
android:id="@+id/imageButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true"
android:layout_marginStart="43dp"
android:layout_marginBottom="101dp"
android:background="#50000000"
app:srcCompat="@drawable/actionbutton" />
</knightnetwork.test2.GameView>