bonjour a tous,

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
public class TestActivity extends Activity {
 
 
 
    @Override
    public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
 
 
        setContentView(new view1(this, null));
    }
        public class view1 extends View {
    		private Paint paint = new Paint();
    		private Path path = new Path();
 
    		public view1(Context context, AttributeSet attrs) {
    			super(context, attrs);
    			paint.setAntiAlias(true);
    			paint.setStrokeWidth(3f);
    			paint.setColor(Color.BLACK);
    			paint.setStyle(Paint.Style.STROKE);
    			paint.setStrokeJoin(Paint.Join.MITER);
 
    		}
 
    		@Override
    		protected void onDraw(Canvas c) {
    			c.drawColor(Color.WHITE);
    			c.drawPath(path, paint);
 
 
 
    		}
    		@Override
    		public boolean onTouchEvent(MotionEvent event) {
    			float eventX = event.getX();
    			float eventY = event.getY();
 
 
    			switch (event.getAction()) {
    			case MotionEvent.ACTION_DOWN:
    				path.moveTo(eventX, eventY);
    				return true;
    			case MotionEvent.ACTION_MOVE:
    				path.lineTo(eventX, eventY);
 
    				break;
    			case MotionEvent.ACTION_UP:
    				// nothing to do
    				break;
    			default:
    				return false;
    			}
 
    			// Schedules a repaint.
    			invalidate();
 
    			return true;
 
 
 
    	}
 
	public void onClick(View arg0) {
		// TODO Auto-generated method stub
 
	}
}
 
    }


mon probleme est comment je peut ajouter une boutton et une imageview a dans ce code et merci