I am using this theme @android:style/Theme.Black.NoTitleBar for my application. the alert dialogue that shows looks very ugly and I don't want to do anything custom. How can I use the holo theme for the alert dialogue only?
thank you,
I am using this theme @android:style/Theme.Black.NoTitleBar for my application. the alert dialogue that shows looks very ugly and I don't want to do anything custom. How can I use the holo theme for the alert dialogue only?
thank you,
I found the solution for api < 11 using @Gopal's answer
AlertDialog.Builder builder=null;
if(android.os.Build.VERSION.SDK_INT>=android.os.Build.VERSION_CODES.HONEYCOMB)
{ builder= new AlertDialog.Builder(this, android.R.style.Theme_Holo_Dialog_NoActionBar); }
else
{ builder= new AlertDialog.Builder(this); }
thank you,