[ Android ] Dialog layout 씌우기
Context context = getApplicationContext();
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View convertView = inflater.inflate(R.layout.loadingbar, null, false);
TextView textView = (TextView)convertView.findViewById(R.id.textview_loadingbar);
textView.setText("전송중");
AlertDialog.Builder builder;
AlertDialog alertDialog;
builder = new AlertDialog.Builder(MainActivity.this);
builder.setView( convertView );
alertDialog = builder.create();
alertDialog.show();
반응형
'Android Story' 카테고리의 다른 글
[ Android ] onSaveInstanceState(Bundle outState) onCreate(Bundle savedInstanceState) (0) | 2016.03.02 |
---|---|
[ Android ] 관통해서 터치하기 (0) | 2016.02.26 |
[ Android ] kakaotalkapi를 사용하여 메세지 보내기 [url] (0) | 2016.02.26 |
[ Android ] 내장 동영상 플레이어 사용하기 (0) | 2016.02.26 |
[ Android ] NetworkOnMainThreadException (0) | 2016.02.25 |
[ Android ] 이클립스에서의 안드로이드 설치하기 (0) | 2016.02.24 |
[ Android ] Intent를 이용한 Custom Object를 넘기는 방법. (0) | 2016.02.02 |
[ Android ] Android Studio get set 오토툴 (0) | 2016.02.01 |