屏幕上有两个或更多布局

时间:2014-02-09 11:53:00

标签: android

我有一些问题。 我尝试在屏幕背景上显示图片。我的背景是在

<ImageView
        android:id="@+id/imageView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
       android:scaleType="fitXY"
        android:src="@drawable/ic_nebo" />

结束我在屏幕上显示

setContentView(R.layout.background);

但我的secon图片,我需要显示的是在类中扩展SurfaceView

  public class GameView extends SurfaceView 
    {
        /**Загружаемая картинка*/
        private Bitmap bmp;

    /**Наше поле рисования*/
    private SurfaceHolder holder;

    //конструктор
    public GameView(Context context) 
    {
          super(context);
          holder = getHolder();
          holder.addCallback(new SurfaceHolder.Callback() 
          {
                 public void surfaceDestroyed(SurfaceHolder holder) 
                 {
                 }

                 @Override
                 public void surfaceCreated(SurfaceHolder holder) 
                 {
                        Canvas canvas = holder.lockCanvas(null);
                        onDraw(canvas);
                        holder.unlockCanvasAndPost(canvas);
                 }

                 @Override
                 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) 
                 {
                 }
          });
          bmp = BitmapFactory.decodeResource(getResources(), R.drawable.soldat);
    }

    //Рисуем нашу картинку на черном фоне
    protected void onDraw(Canvas canvas) 
    {
          canvas.drawColor(Color.WHITE);
          canvas.drawBitmap(bmp, 10, 10, null);
    }
}

我尝试将其放在屏幕上

setContentView( new GameView(this));

但是我已经有了setContentView方法 我如何能够同时绘制这两张图片,一张是来自xml文件,另一张是来自班级setContentView

1 个答案:

答案 0 :(得分:0)

获取此帖子中显示的根ViewGet root view from current activity。然后使用获得的View.setBackgroundResource()

中的View或类似方法