あなたは、画面の高さと幅
public static int getScreenHeight(Context ctx) {
DisplayMetrics metrics = ctx.getResources().getDisplayMetrics();
return metrics.heightPixels;
}
public static int getScreenWidth(Context ctx) {
DisplayMetrics metrics = ctx.getResources().getDisplayMetrics();
return metrics.widthPixels;
}
を取得し、この
Random randX = random.nextInt(getScreenWidth(ctx));
Random randY = random.nextInt(getScreenheight(ctx));
ObjectAnimator moveX = ObjectAnimator.ofFloat(object, "x", randX);
ObjectAnimator moveY = ObjectAnimator.ofFloat(object, "y", randY);
のように使用することができます