# SubHunter **Repository Path**: wbkearly/SubHunter ## Basic Information - **Project Name**: SubHunter - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-13 - **Last Updated**: 2021-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Android 游戏开发从零开始 ### 初始化项目 1.创建空项目 2.清空项目,设置全屏 ```xml ``` ```java /** * @author wbk * instead of AppCompatActivity, * allows us to use the Window class, * which we will do in a moment. */ public class SubHunter extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 取消TITLE requestWindowFeature(Window.FEATURE_NO_TITLE); } } ```