摘要:
layout文件 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://sch 阅读全文
摘要:
layout文件 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://sch 阅读全文
摘要:
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。它基于ECMAScript的一个子集。 JSON采用完全独立于语言的文本格式,但是也使用了类似于C语言家族的习惯(包括C、C++、C#、Java、JavaScript、Perl、Python等)。这些特性使 阅读全文
摘要:
事务是一种机制,是一个操作序列,事务包含了一组数据库操作命令,所有的命令作为一个整体一起向系统提交或撤消,这些命令即要么都执行,要么都不执行,因此事务是一个不可侵害的逻辑工作单元,事务作为一个逻辑单元,必须具备4个ACID属性;原子性,一致性,隔离性和持久性.1.原子性 原子性是指事务必须执行一个完 阅读全文
摘要:
1、 查询Student表中的所有记录的Sname、Ssex和Class列。 3、 查询Student表的所有记录。 4、 查询Score表中成绩在60到80之间的所有记录。 5、 查询Score表中成绩为85,86或88的记录。 6、 查询Student表中“95031”班或性别为“女”的同学记录 阅读全文
摘要:
1 package com.hanqi.testapp3; 2 3 import android.content.SharedPreferences; 4 import android.content.res.AssetManager; 5 import android.graphics.Bitmap; 6 import android.graphics.BitmapFactory... 阅读全文
摘要:
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.andr 阅读全文
摘要:
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.andr 阅读全文
摘要:
1 2 12 13 17 18 23 24 29 1 package com.hanqi.testapp3; 2 3 import android.content.SharedPreferences; 4 import android.os.Bundle; 5 import android.support.v7.app.AppComp... 阅读全文
摘要:
1 package com.hanqi.testapp2; 2 3 import android.app.AlertDialog; 4 import android.os.Bundle; 5 import android.support.v7.app.AppCompatActivity; 6 imp 阅读全文
摘要:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.co 阅读全文
|