Click here to Skip to main content
15,886,795 members
Articles / Mobile Apps / Android
Tip/Trick

Style Any Activity as an Alert Dialog in Android

Rate me:
Please Sign up or sign in to vote.
4.60/5 (5 votes)
19 Jul 2013CPOL 44.1K   7   2
Simple trick that I find very useful

Introduction

This simple trick shows how to change the theme of any activity in Android to take on a dialog form.

Using the Code

Normal activities in Android take up the full-screen form. For example, here is a screenshot from my app "Periodic Table Pro":

and here is the corresponding activity declaration in the AndroidManifest.xml file:

XML
<activity
android:name="com.aman.periodictablepro.HelperActivity"
android:label="@string/helper_activity_name" > 
</activity>

However, there is small trick that can be done to make any activity take on a Dialog form. For example, if we change the activity declaration in the AndroidManifest.xml file to this:

XML
<activity
android:name="com.aman.periodictablepro.HelperActivity"
android:theme="@android:style/Theme.Holo.Dialog"
android:label="@string/helper_activity_name" >
</activity> 

What this android:theme="@android:style/Theme.Holo.Dialog" does is change the theme of an activity. It's still a complete activity, but it has taken on a dialog form.

Here is the screenshot afterwards:

Let me know what you guys think in the comments. Happy coding !!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Answerthanks sir this code helped me, please post like this tricky thing regards vanitha Pin
Member 110943348-Nov-14 14:48
Member 110943348-Nov-14 14:48 
QuestionApp getting Force Closed Pin
curious_S@n$k@r14-May-14 6:02
curious_S@n$k@r14-May-14 6:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.