본문 바로가기

나의 플랫폼/안드로이드

[ Android ] Dialog 위치 이동

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

this.pd = new ProgressDialog(this);
LayoutParams params = this.pd.getWindow().getAttributes();
params.y = -80;
this.pd.getWindow().setAttributes(params);
this.pd.setCancelable(false);
this.pd.setIndeterminate(true);
this.pd.setMessage(getResources().getString(R.string.str_loading));
this.pd.show();

위 세 줄로 변경 할 수 있습니다.

Dialog의 창 속성을 받아 그것을 변경하는 겁니다.

이것 외에도

getWindow().setGravity(Gravity.BOTTOM);

이라는 형식으로도 변경할 수 있으니 참고하세요^^

즐코딩! ㅋ