大约有 11,000 项符合查询结果(耗时:0.0212秒) [XML]
飞机大战游戏 - .aia 案例源码 - 清泛IT社区,为创新赋能!
屏幕数量:3个,代码块2000左右,游戏完成度很高,可玩性非常好,有很好的学习参考价值。
apk可以安装试玩。
翻牌游戏App - .aia 案例源码 - 清泛IT社区,为创新赋能!
屏幕数量:3个,代码块200左右,游戏完成度很高,可玩性非常好,有很好的学习参考价值。
apk可以安装试玩。
简易的地图游戏App - .aia 案例源码 - 清泛IT社区,为创新赋能!
屏幕数量:1个,代码块100左右,非常简易的地图游戏,通过方向按钮控制小人的方向行走,遇到障碍物则停止。可玩性非常好,有很好的学习参考价值。
apk可以安装试玩。
Tablet or Phone - Android
...(thus the idea of a tablet).
More info : http://groups.google.com/group/android-developers/browse_thread/thread/d6323d81f226f93f
share
|
improve this answer
|
follow
...
How does setting baselineAligned to false improve performance in LinearLayout?
...s just building some UI in xml, and Lint gave me a warning and said to set android:baselineAligned to false to improve performance in ListView.
...
How to send an object from one Android Activity to another using Intents?
...entation is JSON, and one of the easiest ways to serialize to/from JSON in android, if you ask me, is through Google GSON.
In that case you just put the string return value from (new Gson()).toJson(myObject); and retrieve the string value and use fromJson to turn it back into your object.
If your ...
Nested fragments disappear during transition animation
...
Wow, so filthy. The lengths us Android developers have to go to just for some slickness
– Dean Wild
Mar 31 '15 at 11:34
1
...
How to make a phone call programmatically?
...rget to add the relevant permission to your manifest:
<uses-permission android:name="android.permission.CALL_PHONE" />
share
|
improve this answer
|
follow
...
Converting a string to an integer on Android
...
See the Integer class and the static parseInt() method:
http://developer.android.com/reference/java/lang/Integer.html
Integer.parseInt(et.getText().toString());
You will need to catch NumberFormatException though in case of problems whilst parsing, so:
int myNum = 0;
try {
myNum = Integer...
Get boolean from database using Android and SQLite
How can I obtain the value of a boolean field in an SQLite database on Android?
10 Answers
...
