今天完成了查看历史记录xml文件和其java文件的开发。
其中主要的一个难点是由于数据数量的不确定,无法在xml文件中为其余下设定插件,
a=c.getString(c.getColumnIndex("driction"))+ ":" + c.getString(c.getColumnIndex("money")) +"元"+","+"备注:" + c.getString(c.getColumnIndex("info"))+ ","+ "时间:" + c.getString(c.getColumnIndex("time"));
TextView t = new TextView(this);
t.setText(a);
t.setTextSize(20);
t.setPadding(0, 0, 0, 15);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
t.setLayoutParams(params);
linearLayout.addView(t);
解决方法是可以在java 文件中建立textview插件,代码如上。