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
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
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
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:
>
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
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
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
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
8 matches
Mail list logo