我有一個Android自定義對話框的小問題。在自定義對話框中處理按鈕
我建立一個自定義對話框中的onCreateDialog(int)的函數:
dialog = new Dialog(this);
dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle("Custom Dialog");
我在同一個類中的onClick(視圖)功能:
public void onClick(View v) {
switch(v.getId()) {
case R.id.dialog_button:
Log.i("pma57","dialog button pressed");
break;
case R.id.main_button:
showDialog(DIALOG_CUSTOM);
break;
}
}
這是XML定義:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:paddingBottom="20dp">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/enter_username" />
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/dialog_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="OK"
android:onClick="onClick" />
</LinearLayout>
對話框出現。但按鈕不起作用(應用程序崩潰) - 這很好,因爲回調的onClick函數是在我的主要活動中定義的 - 而且對話框是一個新的活動(對嗎?)。
但我真的不知道我是如何在對話框中實現一個按鈕 - 我認爲這是一個技術的基本理解問題。很長的路要將Dialog的子類化,然後把所有的東西都寫出來 - 但還有另一種我沒有看到的方式嗎?
我在您的xml文件中看不到main_button。這可能是你遇到的問題。 – prolink007 2010-11-06 16:25:26
這是因爲它只是程序的重要組成部分 - 主要按鈕在主要活動的另一個xml文件中。 – Herrbert 2010-11-06 21:22:14