상세 컨텐츠

본문 제목

안드로이드 [ Android ] Dialog 위치 이동

스마트기기개발관련/안드로이드 개발

by AlrepondTech 2011. 7. 19. 15:08

본문

반응형

 

 

 

 

=================================

=================================

=================================

 

 

 

 

 

 

 

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);

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

즐코딩! ㅋ 

 

 

=================================

=================================

=================================

 

 

반응형


관련글 더보기

댓글 영역