小雲盒子控制器,
常常放一段時間之後,
就無法使用由控制器聲音輸入的功能,
此時往往只要小雲盒子重開機就好。
後來懷疑單純是藍芽控制器失去藍芽連線,
所以就選藍芽->重新連接 控制器的裝置,
果然OK,不用重開機了!
小雲盒子控制器,
常常放一段時間之後,
就無法使用由控制器聲音輸入的功能,
此時往往只要小雲盒子重開機就好。
後來懷疑單純是藍芽控制器失去藍芽連線,
所以就選藍芽->重新連接 控制器的裝置,
果然OK,不用重開機了!
In this document, I will guide you step by step, therefore, you need to read and practice up to down. We will write each version of the game from 1 to the final version.






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package org.o7planning.androidgame2d;import android.app.Activity;import android.os.Bundle;import android.view.Window;import android.view.WindowManager;public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Set fullscreen this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); // Set No Title this.requestWindowFeature(Window.FEATURE_NO_TITLE); }} |
