- 博客(11)
- 收藏
- 关注
原创 Could not find Android-Validator-master.apk!
Could not find Android-Validator-master.apk!
2016-06-26 16:23:49
398
原创 Android requires compiler compliance level 5.0 or 6.0. Found '1.7' instead. Please use Android Tools
Android requires compiler compliance level 5.0 or 6.0. Found '1.7' instead. Please use Android Tools > Fix Project Properties.
2016-06-26 15:53:03
247
原创 乐学成语——显示每条成语的详细信息
1.在layout下新建布局文件dialog_info.xml,代码如下:<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <
2016-06-07 20:59:46
523
原创 乐学成语——显示所有动物类成语的列表
1.在layout下新建activity_animal.xml文件,主要添加了一个ListView控件,代码如下:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="
2016-06-07 20:26:48
500
原创 乐学成语——显示学习列表
1.使类别名称的旁边都有一个图样,修改values中的strings.xml文件如下: HappyIdiom Settings Hello world! 动物 MainActivity 学习 搜搜 游戏 收藏 帮助 动物类 自然类 人物类
2016-06-07 19:25:19
356
原创 乐学成语——显示主界面
1.首先在res的drawable-hdpi目录下拷入需要的图片素材。 2.在res/layout目录下新建activity_main.xml布局,代码如下所示:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.andr
2016-06-07 17:47:35
297
原创 乐学成语——创建数据库和表
1.成语分类学习:用户可以根据自己喜欢的分类(动物类、人物类、季节类、自然类等)来进行学习。2.乐猜成语:学习之余玩玩猜成语游戏,寓教于乐。3.成语收藏:当用户遇到自己喜欢或已掌握的成语可以进行收藏和删除。4.成语查询:支持首字母查询,如一心一意可输入:yxyy。
2016-06-07 15:58:38
747
原创 error C2059: syntax error : '!'和error C2043: illegal break
在C语言中遇到的问题error C2059: syntax error : '!'和error C2043: illegal break#include #include /********found********/ IsPrime(int n){ int i, m; m = 1; /********found********/ for (i=2; i<n; i++)
2016-03-21 22:23:02
3483
原创 error C2449: found '{' at file scope (missing function header?)和error C2059: syntax error : '}'
#include #include /********found********/ IsPrime(int n); { int i, m; m = 1; /********found********/ for (i=2; i<n; i++) if (!(n%i)) { m = 0; break; } return(m); } main() { i
2016-03-21 22:05:45
19194
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人