반응형
=================================
=================================
=================================
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);
이라는 형식으로도 변경할 수 있으니 참고하세요^^
즐코딩! ㅋ
=================================
=================================
=================================
반응형
'스마트기기개발관련 > 안드로이드 개발' 카테고리의 다른 글
안드로이드 시간차 핸들로 이벤트, 지정 시간후 동작하게 하기 (0) | 2011.07.21 |
---|---|
안드로이드 소켓통신 한글 깨짐현상 관련 (1) | 2011.07.20 |
안드로이드 로우레벨 터치 이벤트로 큰 이미지 스크롤 (0) | 2011.07.18 |
안드로이드 Making Sense of Multitouch (0) | 2011.07.18 |
안드로이드 Android ScrollView ( H, V, 대각 ) 스크롤 구현 (0) | 2011.07.14 |