안드로이드에서 리스트 알림창 List AlertDialog를 띄우는 방법에 대해 포스팅합니다.
Summary
Public Constructors
AlertDialog.Builder(Context context)
AlertDialog.Builder(Context context, int theme)
스타일을 지정하여 생성할 수 있습니다.
Public Constructors | ||
| AlertDialog.Builder(Context context) | |
| AlertDialog.Builder(Context context, int theme) |
- 실행화면
- 코드
final String[] items = { "One", "Two", "Three" }; AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("Title"); builder.setItems(items, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { if (which == 0) { } else if (which == 1) { } } }); builder.create(); builder.show(); |
참고 사이트 : developer.android.com
궁금한 사항이나 수정은 댓글로 남겨주세요~
'Android' 카테고리의 다른 글
안드로이드 프로젝트 Library 추가 (0) | 2015.03.16 |
---|---|
안드로이드 activity 실행 launchMode 중복 실행 막기 (2) | 2015.03.15 |
안드로이드 알림창 AlertDialog 띄우기 (0) | 2015.02.08 |
안드로이드 화면 사이즈 구하기 (0) | 2015.02.07 |
Android google Analytics 사용법 (0) | 2015.02.02 |