0
問題があります。 私のアクティビティにはボタンがあり、クリックするとメソッドが呼び出されます。このメソッドは、私にlistviewの警告ダイアログを表示し、アイテムのクリックを変数に保存したいのですが、メソッドを閉じたいが閉じない! なぜですか? メソッドのコードを掲載します。 私のlogcatは私に誤りを与えません。 誰も私を助けることができますか?メソッドが終了しない
private void getValuta() {
// AlertDialog creation
AlertDialog.Builder miaAlert = new AlertDialog.Builder(this);
final ListView lV = new ListView(this);
Cursor c = null;
// Set the title of the dialogBox
miaAlert.setTitle("Choose Valuta");
// I call the Query
c = vdb.fetchValuteListView("0");
// handle of the cursor
startManagingCursor(c);
// I create the SimpleCursorAdapter
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, // Context
android.R.layout.simple_list_item_1, // row/product layout
c, // the cursor
new String[] {
ValuteDb.ValuteMetaData.VALUTE_NAME_KEY},
// the colums
new int[] { android.R.id.text1});// views
stopManagingCursor(c);
// The listView is filled using the adapter created above
lV.setAdapter(adapter);
miaAlert.setView(lV);
miaAlert.setCancelable(false);
// list view listener
lV.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v,
int position, long id) {
String riga = String.valueOf(id);
String confr = vdb.getRecord(riga,2);
System.out.println("position= " + position + "/id= " + id+"/nome= "+confr);
new_valuta = vdb.getRecord(riga,2);
listdb.update("9", "Valuta", new_valuta, "2");
c_list.requery();
return;
}
});
// I create the AlertDialog
AlertDialog alert = miaAlert.create();
// I showw the AlertDialog
alert.show();
あなたはより良い/より多くの答えを得るために英語にコメント、文字列、およびメソッドを翻訳したい場合があります。 –