[android-developers] Custom theme for android ?

2012-12-15 Thread mohammed Nuhail
Hey I want to do custom theme for tablet. please help me out with this ? Thanks in advance . -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

Re: [android-developers] Custom theme for android ?

2012-12-15 Thread TreKing
On Sun, Dec 16, 2012 at 12:21 AM, mohammed Nuhail nuhail...@gmail.comwrote: Hey I want to do custom theme for tablet. please help me out with this ? http://www.catb.org/esr/faqs/smart-questions.html

[android-developers] Custom theme for android DatePicker Dialog shows unpleasant border

2012-08-06 Thread sweta
Hi, I am trying to use a custom date picker dialog for this I modified code as below @Override protected Dialog onCreateDialog(int id) { switch (id) { case DATE_DIALOG_ID: return new DatePickerDialog(this,Android.R.style. Theme_DeviceDefault_Light_Dialog, mDateSetListener, mYear, month, mDay); }

[android-developers] Custom theme for android DatePicker dialog shows unpleasant border

2012-08-06 Thread sweta
Hi All, I am trying to use custom DatePicker dialog. For that I modified the OnCreateDialog method so that it returns a date picker with specific theme like this @Override protected Dialog onCreateDialog(int id) { switch (id) { case DATE_DIALOG_ID: return new

Re: [android-developers] Custom theme for android DatePicker dialog shows unpleasant border

2012-08-06 Thread Mulsaniya Bhadresh
Remove theme argument Android.R.style.Theme_ DeviceDefault_Light_Dialog On Sat, Aug 4, 2012 at 4:47 PM, sweta sweta.s...@gmail.com wrote: Hi All, I am trying to use custom DatePicker dialog. For that I modified the OnCreateDialog method so that it returns a date picker with specific theme