티스토리 뷰
AlertDialog 테마 변경하기
Dexx 2015. 10. 28. 14:34상속받는 Activity에 따라 AlertDialog가 달라지는 문제를 기본 테마를 지정함으로서 해결
1 2 3 | AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder( new ContextThemeWrapper(this, android.R.style.Theme_DeviceDefault_Light)); | cs |
new ContextTemeWrapper()을 빌더에 넣어주면 끝~
스타일 테마는 원하는 대로 선택.
'Android 개발 메모' 카테고리의 다른 글
android SQLite onUpgrade() (0) | 2015.11.13 |
---|---|
ListView에서 Update된 내용(DataSet) 갱신하기 (0) | 2015.10.27 |
RecyclerView에서 Position값 넘기기 (0) | 2015.10.20 |
댓글