我有一個類的面板覆蓋onDraw()方法如下。我有兩個圖像中提到的canvas.drawBitmap(),截至目前他們的立場是固定的。我可以在模擬器上將這兩個圖像從下到上移動嗎?代碼是:在我的Android應用程序中,我如何從他們的位置移動圖像?
class Panel extends View {
public Panel(Context context) {
super(context);
}
@Override
public void onDraw(Canvas canvas) {
Bitmap image1 = BitmapFactory.decodeResource(getResources(), R.drawable.btnpre);
canvas.drawColor(Color.CYAN);
canvas.drawBitmap(Image1, 10, 10, null);
Bitmap Image2 = BitmapFactory.decodeResource(getResources(), R.drawable.btnpre);
canvas.drawBitmap(Image2, 100, 100, null);
}
}
如果你不介意的話,你可以請詳細說明與code.I徒勞 –