如何制作这个美丽的Dialog?

时间:2014-05-15 07:55:48

标签: android android-theme android-dialog customdialog

我看过这个对话框,非常漂亮。我该怎么做这样的对话?我做了一些对话但是使用默认的android主题,我应该使用什么主题或者我可以在哪里找到对话框的其他主题?

enter image description here

4 个答案:

答案 0 :(得分:3)

您在问题中粘贴的图片实际上是关于如何创建此类对话框的教程的屏幕截图。只需按照此处提供的步骤操作:http://www.javasrilankansupport.com/2012/10/android-dialog-android-custom-dialog-for-user-login.html

答案 1 :(得分:1)

最好的方法是为对话框Custiom Dialog

创建自己的布局

Google Ref

并且您将更好地控制对话框behiaviour,良好的做法是使用Dialog Fragment。

答案 2 :(得分:1)

要在Android中创建漂亮的对话框,

  

显示一个浮动在其顶部的对话框窗口的片段   活动的窗口。覆盖onCreateDialog(Bundle)来创建一个   完全自定义对话框,例如AlertDialog,具有自己的内容......

Android documentation将为您提供有关对话框创建,设计和提示的清晰图片。

答案 3 :(得分:0)

如果可能,最好使用自定义对话框或使用主题对话框的活动。

<activity android:name=".MyDialog" 
    android:theme="@android:style/Theme.Dialog">
</activity>