Android-country-picker icon indicating copy to clipboard operation
Android-country-picker copied to clipboard

Added Search For Countries

Open FazalHussain opened this issue 4 years ago • 0 comments

Added Search For Countries

Usage

private fun showCountryDialog() {
    val countryPicker =
            CountryPickerDialog(this,
                    CountryPickerCallbacks { country, flagResId ->
                        countryPickerTv.text = country?.dialingCode.toString()
                    })
    countryPicker.show()
    val window: Window? = countryPicker.window
    window?.setLayout(MATCH_PARENT, MATCH_PARENT)
}

FazalHussain avatar May 29 '20 11:05 FazalHussain