gpt4 book ai didi

java - 游戏领域(安卓)

转载 作者:行者123 更新时间:2023-12-01 09:50:05 24 4
gpt4 key购买 nike

你能帮我一下吗?如何制作像《矿工》、《海战》或《井字棋》那样的游戏 field ?我尝试使用按钮来做到这一点,但结果很糟糕。有人可以帮助我,哪种方法对此更好?提前致谢。

最佳答案

您应该使用View来进行自定义绘图

public class MyView extends View{

@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
//custom draw here
}
}

将该 View 添加到您的 Activity 布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MyActivity" >

<com.your.package.MyView
android:layout_width="match_parent"
android:layout_height="match_parent" />

</LinearLayout>

关于java - 游戏领域(安卓),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37652388/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com