[android-developers] Screenshot of Home Screen In Android outside of Application.

2014-03-27 Thread Deepa M
Hi All, How to Take a Screenshot of device Screen outside of my application without rooting the device. and if i root for taking screenshots and how can i non-root the device by program using android sdk.. -- Thanks& Regards Deepa M 7795164152 -- You received this message because you are subs

[android-developers] Padding offsets for a TextView to perfectly align with an EditText

2014-03-27 Thread yaturner
Try wrapping both views in a FrameLayout. That should guarantee that they both occupy the same space -- 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

Re: [android-developers] Rating Hijacking !

2014-03-27 Thread Bradley O'Hearne
Hey Jose, I feel your pain. I've been an app developer since the beginning of smartphone app development, and have both experienced first-hand and watched others experience the really unfair treatment by people in ratings and reviews, and the unfortunate inability of the associated app market

[android-developers] Re: Rating Hijacking !

2014-03-27 Thread Jose_GD
I've just sent feedback via the Developer's Console and captured this screen. Cannot understand how suddenly a lot of people find my app is terrible... I've lost 0.25 points of rating since this "little help" from Google to get more people rating. Incredible.

Re: [android-developers] Re: Rating Hijacking !

2014-03-27 Thread Jose_GD
LOL! Thanks Kostya, working hard now on improving it! José El miércoles, 26 de marzo de 2014 16:44:39 UTC-3, Kostya Vasilyev escribió: > > > > 2014-03-26 22:28 GMT+04:00 Jose_GD >: > >> Any news regarding this issue? >> >> I don't know if I didn't pay attention before or if it's a brand new >>

[android-developers] Android to open dual sim settings page .

2014-03-27 Thread 12169
Hi, In General Dual Sim Device Data Roaming option is available at Settings/Dual Sim Settings .As per search i donot find any way to open this page.Any help? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send ema

[android-developers] Re: Can't create handler inside thread that has not called Looper.prepare()

2014-03-27 Thread Yuvi
Hi Rashmi, You have to create your Handler in separate thread. Then you can run that thread in your onCreate() of your Service2, like new LooperThread(); public Handler mHandler; // Your handler class LooperThread extends Thread { public void run() { Looper.prepare();