diff options
author | knuthy <knuthy@gmail.com> | 2014-09-30 00:46:58 +0200 |
---|---|---|
committer | knuthy <knuthy@gmail.com> | 2014-09-30 00:46:58 +0200 |
commit | cc2883fe1b99c12f9e40295131c5d8e3ecaf16f9 (patch) | |
tree | a251de6d16c476f20af8e4620510a5106a505991 /app/src/main/res/drawable | |
parent | 499480f80b26668f1a8c3786ff9cb33bc4c1c55b (diff) |
a first draft, not complete yet
Diffstat (limited to 'app/src/main/res/drawable')
-rw-r--r-- | app/src/main/res/drawable/bottom_line.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/bottom_line.xml b/app/src/main/res/drawable/bottom_line.xml new file mode 100644 index 00000000..c24a04df --- /dev/null +++ b/app/src/main/res/drawable/bottom_line.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape android:shape="rectangle"> + <solid android:color="@android:color/holo_orange_dark"/> + </shape> + </item> + + <item android:bottom="2dp"> + <shape android:shape="rectangle"> + <solid android:color="#FFFFFF" /> + </shape> + </item> +</layer-list> |