1
A
回答
1
這不是太棘手:)你需要創建一個自定義對話框。您首先要擴展AlertDialog並重寫onCreate方法。
在此自定義對話框類中,您可以使用setContentView
將特定的佈局文件分配給該對話框類,您可以在其中按自己的喜好操縱內容。
0
0
這只是一個簡單的XML佈局教程與對話的實現,唯一的技巧是讓佈局背景變成一個帶圓角的png,並在對話框中禁用邊框
0
你可以試試這個
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/parent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="15dip"
android:background="@drawable/popup_bg"
android:orientation="vertical" >
//add list items here
</LinearLayout>
<ImageView
android:id="@+id/close_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:clickable="true"
android:cropToPadding="true"
android:onClick="dismissPopUp"
android:src="@drawable/icon_close_btn" />
</RelativeLayout>
相關問題
- 1. Android定製對話框
- 2. 定製警告對話框中的Android
- 3. 在android中定製進度對話框?
- 4. 的Android定製對話框的ImageButton onclicklistener
- 5. Android的密切定製對話框
- 6. 在定製的Android對話框
- 7. 的Android定製對話框中顯示的Android標題欄
- 8. 取代facebook對話框中的自定義對話框在android
- 9. 的Android定製對話框的LinearLayout大小相同的對話框BG圖像
- 10. 在android中的自定義對話框?
- 11. android asynctask中的自定義對話框
- 12. 確定在android中的對話框
- 13. 的Android定製對話框不能填滿整個對話框佈局
- 14. android自定義對話框
- 15. Android自定義對話框
- 16. Android自定義對話框
- 17. 自定義對話框Android
- 18. 從定製對話框
- 19. 定製對話框例外
- 20. 定製對話框onClickListener
- 21. 定製對話框崩潰?
- 22. JQuery對話框定製
- 23. 定製確認對話框
- 24. 從定製MD-對話框
- 25. 定製wxpython對話框
- 26. 定製對話框片段
- 27. 定製jQuery UI對話框
- 28. 在android中製作透明對話框
- 29. 有對話框的Android對話框
- 30. 定製對話框包含Android中的圖像
試試我的帖子.. http://stackoverflow.com/questions/20371218/how-to-set-a-custom-list-view-into-a-dialog-box/20371447#20371447。它包含了你所需要的一切。 – AndroidHacker
對話框中的細節是靜態的還是動態的? –
他們是動態的 –