1
我使用自定義佈局創建了具有多個EditText
字段的自定義AlertDialog
。現在的問題是當用戶點擊時不知道如何從這些EditText
獲取數據。這裏是AlertDialog
。從EditText字段獲取數據
case R.id.menu_newitem:
LayoutInflater factory = LayoutInflater.from(this);
final View textEntryView = factory.inflate(R.layout.newvslayout, null);
new AlertDialog.Builder(this).setTitle("New VS")
.setView(textEntryView).setPositiveButton("Ok", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int whichButton) {
/* User clicked OK so do some stuff */
}
}).setNeutralButton("Cancel", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int whichButton) {
/* User clicked cancel so do some stuff */
}
}).show();
這是我的佈局newvslayout.xml
....
....
<EditText android:id="@+id/vsname" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Name"
android:inputType="text" />
<EditText android:id="@+id/csize" android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="100"
android:inputType="number" />
<EditText android:id="@+id/dsize" android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="600" android:inputType="number" />
<EditText android:id="@+id/ssize" android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="200" android:inputType="number" />
....
....
看到這個[鏈接]( http://stackoverflow.com/a/7200155/990029)。 – Deepak 2012-02-26 16:13:06