CountryCurrencyPicker is an android picker library for country and / or currency. You can implement it as fragment or dialog. It offers the option to search for country values and / or currency values.
Inspired by country-picker-android and currency-picker-android
min. Android API 19 (KitKat)
Step 1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Step 2. Add the dependency
dependencies {
compile 'com.github.scrounger:countrycurrencypicker:1.1.1'
}
The library provides 4 different listener that defines which picker will start
Showing all available countries in local language, searching only for country names is possible
PickerType.COUNTRY
Showing all available countries with their currency in local language, searching for country names, currency names and currency symbols is possible
PickerType.COUNTRYandCURRENCY
Showing all available currencies in local language, searching only for currency names and currency symbols is possible
PickerType.CURRENCY
Showing all available currencies with their countries in local language, searching for currency names, currency symbols and countries is possible
PickerType.CURRENCYandCOUNTRY
CountryCurrencyPicker pickerFragment = CountryCurrencyPicker.newInstance(PickerType.COUNTRY, new CountryCurrencyPickerListener() {
@Override
public void onSelectCountry(Country country) {
if (country.getCurrency() == null) {
Toast.makeText(MainActivity.this,
String.format("name: %s\ncode: %s", country.getName(), country.getCode())
, Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(MainActivity.this,
String.format("name: %s\ncurrencySymbol: %s", country.getName(), country.getCurrency().getSymbol())
, Toast.LENGTH_SHORT).show();
}
}
@Override
public void onSelectCurrency(Currency currency) {
}
});
getSupportFragmentManager().beginTransaction()
.replace(R.id.container, pickerFragment).commit();
CountryCurrencyPicker pickerDialog = CountryCurrencyPicker.newInstance(PickerType.COUNTRYandCURRENCY, new CountryCurrencyPickerListener() {
@Override
public void onSelectCountry(Country country) {
}
@Override
public void onSelectCurrency(Currency currency) {
if (currency.getCountries() == null) {
Toast.makeText(MainActivity.this,
String.format("name: %s\nsymbol: %s", currency.getName(), currency.getSymbol())
, Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(MainActivity.this,
String.format("name: %s\ncurrencySymbol: %s\ncountries: %s", currency.getName(), currency.getSymbol(), TextUtils.join(", ", currency.getCountriesNames()))
, Toast.LENGTH_SHORT).show();
}
}
});
pickerDialog.show(getSupportFragmentManager(), CountryCurrencyPicker.DIALOG_NAME);
Show and set up a dialog title. Dialog style can be changed by overriding the style attribute (see Customization)
pickerDialog.setDialogTitle(getString(R.string.country_currency_dialog_title));
For more examples take a look into MainActivity.java
To customize the style you can override the layout files or just override the styles of library in your project
<resources>
<!-- Style for use as Dialog-->
<style name="countryCurrencyPicker_dialog" parent="@style/Theme.AppCompat.Light.Dialog">
<item name="android:windowNoTitle">false</item>
</style>
<!-- Styles for recyclerView row-->
<style name="countryCurrencyPicker_row_item_container">
<item name="android:paddingBottom">2dp</item>
<item name="android:paddingTop">2dp</item>
<item name="android:paddingStart">8dp</item>
<item name="android:paddingEnd">8dp</item>
<item name="android:foreground">?attr/selectableItemBackground</item>
</style>
<style name="countryCurrencyPicker_row_item_icon_flag">
<item name="android:layout_width">48dp</item>
<item name="android:layout_height">48dp</item>
</style>
<style name="countryCurrencyPicker_row_item_txt_container">
<!--Style for container with title and subTitle-->
<item name="android:layout_marginStart">10dp</item>
<item name="android:layout_marginEnd">10dp</item>
</style>
<style name="countryCurrencyPicker_row_item_txt_title">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:maxLines">1</item>
<item name="android:ellipsize">end</item>
<item name="android:textColor">#0277bd</item>
<item name="android:textStyle">bold</item>
<item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
</style>
<style name="countryCurrencyPicker_row_item_txt_subtitle">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:ellipsize">end</item>
<item name="android:textColor">@android:color/secondary_text_dark</item>
<item name="android:textStyle">italic</item>
<item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
</style>
<style name="countryCurrencyPicker_row_item_txt_code_or_symbol">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:maxLines">1</item>
<item name="android:textStyle">bold</item>
<item name="android:minWidth">30dp</item>
<item name="android:gravity">center</item>
<item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
</style>
</resources>
Since version 1.1.0 the library provides Buttons that can be used directly in xml layout files. Button shows the countryName and the countryFlag. On click it opens the picker dialog.
<com.scrounger.countrycurrencypicker.library.Buttons.CountryCurrencyButton
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:country_code="US"
app:show_currency="true" />
You can set country_code and show_currency directly in the xml layout file. Or define it befor you initialize the button, for example in the create method:
CountryCurrencyButton button = (CountryCurrencyButton) findViewById(R.id.button);
button.setOnClickListener(this);
button.setCountry("DE");
button.setShowCurrency(false);
To receive the selected country, just use the CountryCurrencyPickerListener as button.setOnClickListener() listener:
CountryCurrencyButton button = (CountryCurrencyButton) findViewById(R.id.button);
button.setOnClickListener(new CountryCurrencyPickerListener() {
@Override
public void onSelectCountry(Country country) {
if (country.getCurrency() == null) {
Toast.makeText(MainActivity.this,
String.format("name: %s\ncode: %s", country.getName(), country.getCode())
, Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(MainActivity.this,
String.format("name: %s\ncurrencySymbol: %s", country.getName(), country.getCurrency().getSymbol())
, Toast.LENGTH_SHORT).show();
}
}
@Override
public void onSelectCurrency(Currency currency) {
}
});
Copyright (C) 2017 Scrounger
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.