반응형
Country Picker
무난무난
https://github.com/hbb20/CountryCodePickerProject/wiki/How-to-integrate-into-your-project
Gradle
implementation 'com.hbb20:ccp:2.2.4'
activity_main.xml
<com.hbb20.CountryCodePicker
android:id="@+id/ccp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
MainActivity.kt
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
Log.d("SSS", "현재국가코드: ${Locale.getDefault().getCountry()}")
ccp.setCountryForNameCode( Locale.getDefault().getCountry() )
ccp.setOnCountryChangeListener {
Log.d("SSS", "선택한 국가코드: ${ccp.selectedCountryCode}")
ccp.selectedCountryName
}
}
}
반응형
'Android > Android 일반' 카테고리의 다른 글
[Kotlin] 소스코드로 TextView 색상 바꾸기 (0) | 2019.02.28 |
---|---|
서비스 실행유무 확인 (0) | 2019.02.25 |
죽지 않는 서비스 (0) | 2019.02.15 |
서비스 예제(kotlin) (1) | 2019.02.15 |
SMS Retriever API - 2 (0) | 2019.01.20 |