我制作了不同的数据库,然后从编码中向DB插入值。这是正确的方法吗?如果是,你能说出如何显示存储的值吗?
public void onClick(View arg0) {
if(turnoffon==0)
{
imstar.setImageResource(R.drawable.stars);
get_fav=trname.getText().toString();
db.open();
db.insert(get_fav);
db.close();
Intent is= new Intent(Clicked_Result.this,Favlist.class);
startActivity(is);
Toast.makeText(getApplicationContext(), "Saved toFavorits", Toast.LENGTH_LONG).show();
turnoffon=1;
}