1. TelephonyManager val telephonyManager = getSystemService(TELEPHONY_SERVICE) as TelephonyManager if (telephonyManager.phoneType == TelephonyManager.PHONE_TYPE_NONE) { Toast.makeText(this, "Tablet", Toast.LENGTH_SHORT).show() } else { Toast.makeText(this, "Mobile", Toast.LENGTH_SHORT).show() } 2. Configuration 완벽하게 구분되지는 않는다. sw600dp 이상이면 태블릿으로, 이하이면 폰으로 구분된다. val screenType = resources.configu..