This is my source code of signature.xml

<android.gesture.GestureOverlayView
 android:id="@+id/signature" android:layout_width="fill_parent"
 android:layout_height="120dip"
 android:gestureStrokeWidth="2" android:gestureColor="#000000"
 android:background="#ffffff" android:gestureStrokeType="multiple"
 android:fadeOffset="10000" android:eventsInterceptionEnabled="true">
 </android.gesture.GestureOverlayView>

Related java code :

public class Signature extends LinearLayout {
public Signature(final Context context){
super(context); 
inflate(context, R.layout.signature, this); 
GestureOverlayView overlayView= (GestureOverlayView)   findViewById(R.id.signature);  

The issue is that the gesture stroke disappears instantly. Is this good code? Can I use Gesture in LinearLayout?

link|improve this question

40% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.