我点击时在机器人体内创建了一个按钮检查数据, 它没有做任何事情。 。 。
switch(v.getId()){
case R.id.Button01add:
showDialog(DIALOG_ID);
break;
case R.id.Button01check:
break;
时 时
when i click on add it shows some dialog which pops up like that i want to display images which are saved in database when i click on check button this is my checkdata.java
public class CheckData extends ListActivity {
TextView selection;
DataManipulator dm;
private DataManipulator DbHelper;
private Object testFruit;
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.check);
dm = new DataManipulator(this);
LinearLayout layout = new LinearLayout(this);
ImageView image = new ImageView(this);
DbHelper = new DataManipulator(this);
DbHelper.open();
DbHelper.createFruitEntry((Fruit) testFruit);
DbHelper.close();
testFruit = null;
DbHelper.open();
testFruit = DbHelper.getFirstFruitFromDB();
DbHelper.close();
image.setImageBitmap(((Fruit) testFruit).getBitmap());
ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
setContentView(layout);
addContentView(image, params);
时 时
时 时
在此情况下的语句之间应该写出什么内容, 这样我可以看到保存在数据库中的图像 。