##amdiv (Android Material Designs Icon View) Tried of keeping up with image icons? Simply make icons using TextViews, no visual quality lost, no resolution loss, Change icon colors on the Fly!
##Installation
- Download this whole repo and unzip somewhere
- Copy the 'MaterialDesignIcons.ttf' file into '/assets/icons'
- Copy/import the 'MaterialDesignIconsTextView.java' in your project.
- Open the
demo.html
in your browser and pick any icon you want and get the code e.g0xe9fb
.
##Creat a string resource //with the icon code you picked from the previous step create a string resource
##Create a TextView
<.MaterialDesignIconsTextView
android:id="@+id/my_account"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#fff"
android:textSize="24sp"
android:text="@string/my_icon"
tools:ignore="SpUsage" />