deprecated5 android.app.AlertDialog.THEME_DEVICE_DEFAULT_LIGHT 대체하기 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~ 이렇게 주면 동일하게 동작한다. 2021. 10. 20. 이전 1 2 다음