1
データを挿入すると、そのデータがカストムリストビューに表示され、リストビューにもボタンが表示されるようになりました。その時点でボタンをクリックすると、だからときuはonclicklistenerのコードを書いていないListActivityが継承したときにonClickListenerが機能しない
public class MydatabaseforlistActivity extends ListActivity {
DbHelper dbhelper;
SQLiteDatabase db;
Button btnEdit,btnDel;
String[] id;
String[] title;
int size;
SimpleCursorAdapter adapter;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/*{
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
super.onCreate(savedInstanceState);*/
//setContentView(R.layout.listcarda);
dbhelper = new DbHelper(this);
dbhelper.oninsert("HELLO");
dbhelper.oninsert("hjkhkjhl");
dbhelper.oninsert("happy mother");
dbhelper.oninsert("happy sorry");
db=dbhelper.getReadableDatabase();
Cursor c = db.query(DbHelper.TABLE_NAME, new String[] { DbHelper.U_ID,
DbHelper.TITLE }, null, null, null, null, null);
int i = 0;
c.moveToFirst();
size = c.getCount();
id = new String[size];
title = new String[size];
while (c.moveToNext()) {
id[i] = c.getString(1);
// title[i] = c.getString(2);
i++;
c.moveToNext();
}
c.close();
db.close();
//lv = getListView();
setListAdapter(new Notes(this));
....私も、このためのコードを送信 .... ListActivityはその後、アンドロイドで私のappicationにonClickListener動作しない拡張! ! – Farhan