I'm just starting to develop on android but I can't find a way to overlay two or more ImageView objects to half as a sequence. For example the cards at the bottom of this screenshot:
http://img6.imageshack.us/img6/4885/heartsc.jpg
I tried to use some public methods of RelativeLayout,FrameLayout and LinearLayout but nothing works.
Can anyone help me? Possibly only using java code, not xml.
EDIT:
I've created a new class,this:
public class background extends View{
ImageView I,II;
Paint paint;
public background(Context context) {
super(context);
I=new ImageView(context);
I.setImageResource(R.drawable.abc);
II=new ImageView(context);
I.setImageResource(R.drawable.efg);
paint= new Paint();
}
protected void onDraw(Canvas canvas){
super.onDraw(canvas);
//To convert ImageViaw to Bitmap (is it wrong?)
BitmapDrawable drawable = (BitmapDrawable) I.getDrawable();
Bitmap bitmap = drawable.getBitmap();
BitmapDrawable drawableII = (BitmapDrawable) II.getDrawable();
Bitmap bmap = drawableII.getBitmap();
//set paint color
paint.setColor(Color.rgb(220, 220, 220));
//draw the bitmaps
canvas.drawBitmap(bitmap,1,1,paint);
canvas.drawBitmap(bmap,10,1,paint);
}
}
Whit this class,if it draws only a bitmap,it works,so instead as you see here,with two bitmap it causes an app crash,why?