Skip to content

phamquyhai/Android-Flag-Kit

Repository files navigation

Android-Flag-Kit

Free Resource from https://dribbble.com/shots/2828120-All-Flags-Freebie-Flag-Kit

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.KaKaVip:Android-Flag-Kit:v0.1'
	}

Step 3. Using

in XML

<com.haipq.android.flagkit.FlagImageView
        android:id="@+id/flagView"
        android:layout_width="70dp"
        android:layout_height="wrap_content"
        app:countryCode="US"
        tools:src="@drawable/flag_us" />  // To Show in Preview

in Java Code

FlagImageView flagImageView = (FlagImageView) findViewById(R.id.flagView);

flagImageView.setCountryCode("VN"); // with text code

flagImageView.setCountryCode(Locale.CANADA); //  with Locale

flagImageView.defaultLocal(); // Show current device

About

The android library displays flags of countries

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages