i am new to android . i am developing application which requires user signature . how to capture signature in android ?

Thanks in advance

link|improve this question
feedback

3 Answers

Your question is a little too broad. Try asking a question about a specific problem, not "how do I do something general". See the FAQ for more information about how to ask a question.

Here is a vague idea though:

  1. You'll want to have a canvas object that can allow the user to draw to the screen. Here is a link on SO about it. Android drawing a line to follow your finger

  2. Then you'll want to output that bitmap as a file: Android : Bitmap save to location

link|improve this answer
thanks citizen conn developer.android.com/resources/samples/ApiDemos/src/com/… i referred this link . but now i am getting error in this line public class TouchPaint extends GraphicsActivity {} graphicsactivity not found – ragu Jul 26 '11 at 18:59
read this: stackoverflow.com/questions/3752003/… – citizen conn Jul 26 '11 at 19:14
feedback

Many applications ask their users to accept an agreement, but I can't think of one I've used that's asked me for my actual signature.

Is there a good reason that your users aren't able to accept yr agreement in the usual way? (via a check box or by hitting a button marked 'I accept'?)

  • Why is a graphical representation of the users signature required?
  • It's difficult to write using a finger, and it's even more difficult to write (using a finger) on a smart phone screen.

There are also privacy concerns relating to obtaining a graphical representation of a user's signature. Once obtained, I have no idea what your company will do with my signature. A signature is a valuable piece of personal information, which could ultimately be used for identity theft.

link|improve this answer
Actually this application saves the personal information of user ,to ensure that asking for the signature – ragu Jul 26 '11 at 19:04
feedback

Someone asked and answer this on SO, maybe it will work for you as well, quite a few answers that could work actually

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.