私はアンドロイドプログラミングが初めてで、小さな問題に遭遇しました。お役に立てれば幸いです。
私が使用して作成しているライブ壁紙の長方形を作成しています:
void drawFrame() {
final SurfaceHolder holder = getSurfaceHolder();
Canvas c = null;
try {
c = holder.lockCanvas();
if (c != null) {
Paint paint = new Paint();
paint.setColor(Color.CYAN);
Paint ypaint = new Paint();
ypaint.setColor(Color.RED);
Paint ppaint = new Paint();
ppaint.setColor(Color.GREEN);
drawVerStripes(c, ppaint, 0,20);
drawVerStripes(c, paint, 50,20);
drawVerStripes(c, ypaint,0,10);
}
} finally {
if (c != null)
holder.unlockCanvasAndPost(c);
}
関数:
パラメータ:
width: 長方形の幅
space: 最後の rect とこの rect の差
int y=0;
int oldY=0;
private void drawVerStripes(Canvas c, Paint paint, int space, int width) {
y=oldY+space;
c.drawRect(y, 0, y+width,c.getHeight(), paint);
oldY=y;
}
その結果、長方形が画面の片側に非常に速く移動します。私は彼らが画面にとどまり、動かないようにしたい.
つまり、drawVerStripes がすべてのフレームではなく 1 回だけ実行される方法はありますか。