[android-developers] Re: Is it impossible to move and merge text on an image

2011-05-06 Thread Hans-Erik
...@gmail.com wrote: On Thu, May 5, 2011 at 1:09 PM, Hans-Erik erikswed...@gmail.com wrote: Help is needed! With which part? - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago

[android-developers] Re: Is it impossible to move and merge text on an image

2011-05-06 Thread Hans-Erik
i have not startet doing this so any ide is helpfull was thinking i could write text on the bitmap and then track x/y when using finger to move the text to new x/y you have better ide? On 6 Maj, 02:42, TreKing treking...@gmail.com wrote: On Thu, May 5, 2011 at 1:09 PM, Hans-Erik erikswed

[android-developers] Re: Is it impossible to move and merge text on an image

2011-05-06 Thread Hans-Erik
I forgot to say i need to save the image with the added text, like merge into a new image. I guess that complicates things. Im investigating and can see that the Canvas class has the drawText method. drawText will write the text solid on the image. So i guess using Canvas is the way to go.

[android-developers] Re: Is it impossible to move and merge text on an image

2011-05-06 Thread Hans-Erik
Well, simply do the saving when the user is finished moving the text or using the feature compose the image. The bitmap canvas supports basic things like drawing text. This doesn't complicate things. yea you right i think, after playing around with this sample for 30 min

[android-developers] Is it impossible to move and merge text on an image

2011-05-05 Thread Hans-Erik
hi all. This seem really hard to do since i cannot find any information about it - Open a jpg in full screen. - Type text on the jpg. - able to move that text where i want it positioned on the jpg. - moving of text must be done with a finger (not in code). Help is needed! -- You received this

[android-developers] How do i multi select images in the Gallery and send there URL to my activity?

2010-12-22 Thread Hans-Erik
hi In the gallery I have added my Item to the share menu. But i can only get one image and making my Activity start. This code give me the URL for one image. Is it possible to set up the Gallery or the share menu so that user can select one or many pictures? if (Intent.ACTION_SEND.equals(action))

[android-developers] How do i multi select images in the Gallery and send there URL to my activity?

2010-12-22 Thread Hans-Erik
hi In the gallery I have added my Item to the share menu. But i can only get one image and making my Activity start. This code give me the URL for one image. Is it possible to set up the Gallery or the share menu so that user can select one or many pictures? if (Intent.ACTION_SEND.equals(action))

[android-developers] Re: How do i multi select images in the Gallery and send there URL to my activity?

2010-12-22 Thread Hans-Erik
On 22 Dec, 20:17, Mark Murphy mmur...@commonsware.com wrote: ACTION_SEND only supports sending one item. Thanks for your reply Do you know any other way to do this? My Activity is dormant and awaken by the user selecting images. There has to be another way to do this right? -- You received

[android-developers] Re: How do i multi select images in the Gallery and send there URL to my activity?

2010-12-22 Thread Hans-Erik
On 22 Dec, 20:48, bruce palant...@gmail.com wrote: What you want is ACTION_SEND_MULTIPLE. You will receive a set of Uris. Thanks Bruce! Coming from Java, Any book you can recommend learning android infrastructure? -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Service or no service

2010-12-18 Thread Hans-Erik
That's quite interesting thanks TreKing. That is one approach but dont think it will work for me. On scenario is if 200 phones connect to my server wanting to send one jpg to another phone. 200 messages would go out trough google notifying all phones there is jpg package for them. Google has

[android-developers] Re: Service or no service

2010-12-18 Thread Hans-Erik
I guess if you have a significantly large user base, but I'm assuming that's not the case, or is it? Im planing ahead, trying to learn what it takes to make and app like that Is some lagging or some delay in the delivery of these messages completely unacceptable? yes im playing with the

[android-developers] Service or no service

2010-12-16 Thread Hans-Erik
after reading the article http://www.androidguys.com/2009/09/09/diamonds-are-forever-services-are-not/ I want to ask about creating an Android app that need to run always! The app is an ftp server listening for my PC client to send pictures. The sending can occur anytime so the Android server