我該如何顯示AlertDialog
兩個EditText
和2 TextView
?AlertDialog在android中
custom_dialog.xml
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout android:orientation="horizontal"
android:id="@id/layout_root" android:padding="10.0dip"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Libellé"
android:id="@+id/Text_Libelle"
/>
<EditText android:id="@+id/Edit_Libelle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
/>
<EditText android:id="@+id/Edit_Url"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
/>
在點擊按鈕,我想表明在警告對話框此接口。
這不是一個好問題,但至少應該創建一個更好的答案... – WarrenFaith 2011-03-28 13:57:22
這不是「StackOverflow方式」來提供代碼。我提供了與早期提出這個問題時所用的相同的鏈接,並且有足夠的權利可以開展工作。當他回來並問「如何將對話數據返回給調用活動」時,他完成了自己的工作,並可以針對特定問題獲得具體答案。大聲笑 – Rich 2011-03-28 14:13:33
我不希望你提供代碼。這不是它應該的方式,你是對的。無論如何,有更多的信息,比如「你必須這樣做,我建議你這樣做......其他信息可以在這裏找到:鏈接」這是它應該的方式。 – WarrenFaith 2011-03-28 17:58:10