我在關閉提醒對話框時遇到問題。我正在使用佈局充氣器來製作對話框,因此我不確定在完成該操作後如何關閉它。代碼如下:關閉按鈕上的自定義提醒對話框單擊
AlertDialog.Builder dialog = new AlertDialog.Builder(AddData.this);
DialogInterface dia = new DialogInterface();
//Create a custom layout for the dialog box
LayoutInflater inflater = (LayoutInflater)AddData.this.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.add_rep_1_set, parent, false);
TextView title = (TextView)layout.findViewById(R.id.rep_1_title);
Button add_item = (Button)layout.findViewById(R.id.add_button);
add_item.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
//Need this to close the alert dialog box
}
});
title.setText(workout_items[position]);
dialog.setView(layout);
dialog.show();
我不能稱之爲完成,因爲關閉該警告對話框中,從啓動列表視圖,以及dialog.dismiss電話不提供給我。
你認爲我應該怎麼做才能解決這個問題?
調用'解僱( );' – Vivek 2011-04-19 08:09:56