위치 변경 썸네일형 리스트형 [ Android ] Toast 위치 변경 Toast는 항상 밑에서만 출력하는 것이 아니다. 속성을 변경 시켜줌으로써 이동이 가능하다. 출처 : http://www.androidpub.com/141224 Toast toast = Toast.makeText(context, msg, duration); int offsetX = 0; int offsetY = 0; toast.setGravity(Gravity.CENTER, offsetX, offsetY); toast.show(); 위에 읽어보시면 아시겠지만, 크기는 텍스트 사이즈에 따라 변화됩니다. 즐코딩^^ 더보기 [ Android ] Dialog 위치 이동 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); .. 더보기 이전 1 다음