diff --git a/README.md b/README.md
index eabd496..cb0434f 100644
--- a/README.md
+++ b/README.md
@@ -30,8 +30,9 @@ Many thanks to MatÃas Dumrauf to help me supporting this library!
## Usages
-In the xml :
+In XML :
+* Layout Resource
```xml
```
+
+* Colors Resource
+```xml
+ #000
+ #000
+ #000
+ #000
+ #000
+ #000
+```
+
You can set a hint and a floating label text. If no floating label text is provided, the hint will be set instead.
-Java side, you use it like a regular spinner, setting an adapter to it.
+In Java:
+
+Use it like a regular spinner by setting an adapter to it.
```java
String[] ITEMS = {"Item 1", "Item 2", "Item 3", "Item 4", "Item 5", "Item 6"};
ArrayAdapter adapter = new ArrayAdapter(this, android.R.layout.simple_spinner_item, ITEMS);