How can I apply a theme/style to an Action android
Posted
by skooter
on Stack Overflow
See other posts from Stack Overflow
or by skooter
Published on 2010-04-27T03:43:27Z
Indexed on
2010/04/27
3:43 UTC
Read the original article
Hit count: 241
In Android, how can I apply a style to an API action?
I am using the RingtoneManager.RINGTON_PICKER action to let the user select an alarm, and would like to apply the standard theme that the other child-activities use.
Does anyone know how I can apply a theme? The code I'm using to open the RINGTONE_PICKER is
Intent intent = new Intent(RingtoneManager.ACTION_RINGTONE_PICKER); ((Activity)mContext).startActivityForResult(intent, BackendConstant.RINGTONE_CODE);
© Stack Overflow or respective owner