每日总结 3.7
今天上了数据库的原理课,认识到了数据库的三个模式,分别为外模式,概念模式,内模式,学习了一点的sql语句。
下午的python课,刘老师讲述了各种语法,课后学习一点的Android的代码,不是很懂。
private TextView show,showAge;
show.setText("姓名"); showAge.setText("年龄");
String newName = cursor.getString(cursor.getColumnIndex("name"));//查询数据name
int newAge = cursor.getInt(cursor.getColumnIndex("age"));//查询数据age
show.setText(show.getText() + "\n" + newName);//在一个textView显示所有查询到的数据一条加一个换号
showAge.setText(showAge.getText()+"\n" + newAge);
后来经过代码编写
setText就是在指定的地方显示文本。
getText是指返回数据窗口控件中悬浮在当前行列之上的编辑框中的文本。