Android/Technic

android.app.AlertDialog.THEME_DEVICE_DEFAULT_LIGHT 대체하기

등촌동 꼬북이 2021. 10. 20. 13:24
AlertDialog.Builder builder = new AlertDialog.Builder(mContext, android.app.AlertDialog.THEME_DEVICE_DEFAULT_LIGHT);

이 코드는 android.app.AlertDialog.THEME_DEVICE_DEFAULT_LIGHT가 Deprecated되어서 교체해야한다.

 

AlertDialog.Builder alertBuilder = new AlertDialog.Builder(mContext, android.R.style.Theme_DeviceDefault_Light_Dialog_Alert);

 

이렇게 android.R.style.Theme~ 이렇게 주면 동일하게 동작한다.