[android-developers] Print from device

2011-11-17 Thread ecspertiza
HI, can i print document from android device ? May be there is Action or SDK ? -- 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 group, send

[android-developers] Re: Print from device

2011-11-17 Thread ecspertiza
Thanks, i find this http://www.slideshare.net/wolfpaulus/android-print-intent-8431140 may by that help me :) On Nov 17, 3:42 pm, Carlos A. M. dos Santos unixma...@gmail.com wrote: On Thu, Nov 17, 2011 at 6:01 AM, ecspertiza ecspert...@gmail.com wrote: HI, can i print document from android

[android-developers] Re: Hide\show aplication and restart activity

2011-10-31 Thread ecspertiza
, ecspertiza ecspert...@gmail.com wrote: Why activity restart ? You pressed Back, called finish(), or the system killed your Activity. How to do hide\show  without restart ? This will happen automatically, if possible

[android-developers] Hide\show aplication and restart activity

2011-10-26 Thread ecspertiza
HI all. If i hide and show application i see to my log how activity restart, (onCreate ... blablabla) . Thereby many function work not correct. Why activity restart ? How to do hide\show without restart ? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] ErrorMessageHandler.handleMessage(-1) to start camera

2011-10-10 Thread ecspertiza
Hi all, I use code Intent intent = new Intent(android.media.action.IMAGE_CAPTURE); startActivityForResult(intent, 0); to start standart camera. Standart camera run and i get message ErrorMessageHandler.handleMessage(-1). what wrong ? -- You received this message because you are subscribed to

[android-developers] How enable\disable GPS ?

2011-10-04 Thread ecspertiza
Hi, all. I need to enable\disable gps programmatically. I used code String provider = Settings.Secure.getString(QtApplication.mainActivity().getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED); if(!provider.contains(gps)){ //if gps is disabled final Intent poke = new Intent();