Re: [android-developers] take a sreenshot without rootpremission

2012-06-10 Thread JK Park
gt; On Sun, Jun 10, 2012 at 10:42 PM, JK Park wrote: > > Hi all, > > I am trying to build up a screenshot app without root permission. > > I am wondering whether that I can get a current screen. > > > > I found this, > > > > view.setDrawingCach

[android-developers] take a sreenshot without rootpremission

2012-06-10 Thread JK Park
Hi all, I am trying to build up a screenshot app without root permission. I am wondering whether that I can get a current screen. I found this, view.setDrawingCacheEnabled(true); Bitmap screenshot = Bitmap.createBitmap(view.getDrawingCache()); view.setDrawingCacheEnabled(false); but, It works

[android-developers] Re: Convert from Byte array to Pdf format

2012-06-07 Thread JK Park
You better use this : File dir = Environment.getExternalStorageDirectory(); String filename = "test.pdf"; File f = new File(dir, filename); f.createNewFile(); OutputStream outStream = new FileOutputStream(f); ... outStream.close(); -- You received this message because you are subscribed

[android-developers] Re: about lock screen : is anyone using app named 'lookout'?

2011-07-11 Thread JK Park
can you give me hints more?? On 7월12일, 오전1시13분, Raghav Sood wrote: > I use it. It doesn't control the home screen. It just locks your device the > same way the power button would. > > > > > > > > > > On Mon, Jul 11, 2011 at 9:36 PM, JK Park wrote: >

[android-developers] about lock screen : is anyone using app named 'lookout'?

2011-07-11 Thread JK Park
I'm looking for any idea from anyone who has done such like 'lock screen'. I know there is no way to handle home key in activity. but I found app named 'lookout'. this app has remote lock service from web site. here is link : www.mylookout.com this lock service seems it can control key event. does

[android-developers] Re: filling form when a app is installed

2011-06-23 Thread JK Park
thank you for your reply On 6월24일, 오전7시59분, Mark Murphy wrote: > On Thu, Jun 23, 2011 at 7:35 AM, JK Park wrote: > > I am trying to build up a program that managing android on web server. > > > So when a customer is installing my app, I want to show a form and > > th

[android-developers] filling form when a app is installed

2011-06-23 Thread JK Park
Hi I am trying to build up a program that managing android on web server. So when a customer is installing my app, I want to show a form and then send a filled form to server. the form is basic information such as name, address and job. Can anyone tell me how to show a form when a app is install

[android-developers] how to listen messages from http server

2011-04-07 Thread JK Park
I am trying to build up a managing program from web server. And I uses APM server and be trying in AVD. What I want to know is a program that listens a message(like packet or socket?) from server when the admin controls. Is anyone can tell me how to do? -- You received this message because you