次のコードを使用してデータベースからレコードを取得します。sqliteで取得した後にレコードを削除するにはどうすればいいですか?
for (LocWiseProfileBeans cn : LocWiseProfile) {
// get a reference for the TableLayout
TableLayout table = (TableLayout) findViewById(R.id.locprofile_table);
// create a new TableRow
TableRow row = new TableRow(this);
// count the counter up by one
counter++;
String log = "Loc Name: "+cn.getLocname()+" ,Lattitude: " + cn.getLattitude()+ " ,Longitude: " + cn.getLongitude()+ " , Selected Profile :"+cn.getSelectedprofile();
TextView t = new TextView(this);
// set the text to "text xx"
t.setText(cn.getLocname());
TextView t2 = new TextView(this);
t2.setText(cn.getSelectedprofile());
row.addView(t);
row.addView(t2);
table.addView(row,new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
しかし、私はこの記録をユーザーの要求に応じて有効にする必要があります。
ユーザーが2番目のレコードをクリックすると、このレコードは削除されます。
私は答えを見つけようとしましたが、適切な答えを見つけられません.......
私に参照コードまたは記事を提供してください。
ありがとうございました!
おそらくListViewを使用して結果を表示できますか? – Hanon
レコードを有効にするにはどのビューを使用する必要がありますか?ありがとう –
@raju:ユーザーがレコードをクリックした場合は削除する必要があります。 –