-4
나는 토스트 텍스트가 무작위로 전화 화면에 표시되도록 코드를 테스트하고있다. Toast Gravity의 x와 y 오프셋의 최대 값은 얼마입니까?Toast.setGravity의 x, y 오프셋의 범위는 무엇입니까?
int i=0;
while(i < 100){
Random rand = new Random();
int xOffset = rand.nextInt(500); //what is the max number for this?
int yOffset = rand.nextInt(700); //what is the max number for this?
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.setGravity(Gravity.TOP|Gravity.LEFT,xOffset,yOffset);
toast.show();
i++;
}