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);
이라는 형식으로도 변경할 수 있으니 참고하세요^^
즐코딩! ㅋ
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Android : AndEngine ] 엔진 사용 시 Activity간의 관계 (0) | 2011.07.01 |
---|---|
[ Android ] Thumnails를 사용 시 메모리 오류. (0) | 2011.06.28 |
[ Android ] GridView를 사용할 때 getView에 대한 이해! (8) | 2011.06.26 |
[ Android ] TextView에 어이 없는.. (0) | 2011.06.23 |
[ Android ] 프레임 속도 조절. (0) | 2011.06.22 |