@@ -24,7 +24,7 @@ A library to display FontAwesome Icons in any View or a MenuItem
24
24
Add the following code snippet to module/build.gradle
25
25
``` gradle
26
26
dependencies {
27
- compile 'com.lmntrx.livin.library.droidawesome:droid-awesome:1.1.2 '
27
+ compile 'com.lmntrx.livin.library.droidawesome:droid-awesome:1.1.3 '
28
28
}
29
29
```
30
30
@@ -34,13 +34,13 @@ dependencies {
34
34
<dependency >
35
35
<groupId >com.lmntrx.livin.library.droidawesome</groupId >
36
36
<artifactId >droid-awesome</artifactId >
37
- <version >1.1.2 </version >
37
+ <version >1.1.3 </version >
38
38
<type >pom</type >
39
39
</dependency >
40
40
```
41
41
42
42
## How to use it? ##
43
- * Define required icons in res/values/icons.xml
43
+ 1 . Define required icons in res/values/icons.xml
44
44
``` xml
45
45
<?xml version =" 1.0" encoding =" utf-8" ?>
46
46
<resources >
@@ -49,7 +49,7 @@ dependencies {
49
49
<string name =" fa_settings_gears" > </string >
50
50
</resources >
51
51
```
52
- * Now use custom view in activity.xml
52
+ 1 . Now use custom view in activity.xml
53
53
``` xml
54
54
<com .lmntrx.livin.library.droidawesome.DroidAwesomeAutoCompleteTextView
55
55
android : layout_width =" wrap_content"
@@ -81,7 +81,7 @@ textView = (TextView)DroidAwesome.setFontIcon(context,textView,context.getString
81
81
Imageview imageView = new Imageview (context);
82
82
imageView = (Imageview )DroidAwesome . setFontIcon(context,imageView,context. getString(R . string. your_icon_string));
83
83
```
84
- * To use with menu items
84
+ 1 . To use with menu items
85
85
``` xml
86
86
<!-- XML-->
87
87
<menu xmlns : android =" http://schemas.android.com/apk/res/android"
@@ -111,6 +111,10 @@ public boolean onCreateOptionsMenu(Menu menu) {
111
111
112
112
## ChangeLog ##
113
113
114
+ ### 1.1.3 ###
115
+ * Minor Bug Fixes
116
+ * Updated build version and support library
117
+
114
118
### 1.1.2 ###
115
119
* Minor Bug Fix
116
120
0 commit comments