diff options
author | zeapo <mohamed@zenadi.com> | 2014-08-17 01:13:46 +0200 |
---|---|---|
committer | zeapo <mohamed@zenadi.com> | 2014-08-17 01:13:46 +0200 |
commit | 1858fb5e52eb764924d1b57dcd6c395ead54cbc3 (patch) | |
tree | 5eb506679c2b108a151388798e8be495fc1df0e3 /app/src/main/res/drawable-xxhdpi | |
parent | 3debc057071e4468921f99f2ebeb59f54eae9307 (diff) |
major ui improvement to the list using SwipeListView
Diffstat (limited to 'app/src/main/res/drawable-xxhdpi')
-rw-r--r-- | app/src/main/res/drawable-xxhdpi/gray_rectangle.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/main/res/drawable-xxhdpi/gray_rectangle.xml b/app/src/main/res/drawable-xxhdpi/gray_rectangle.xml new file mode 100644 index 00000000..b1858c80 --- /dev/null +++ b/app/src/main/res/drawable-xxhdpi/gray_rectangle.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> + +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape android:shape="rectangle" + android:dither="true"> + <corners android:radius="2dp"/> + <solid android:color="#ccc" /> + + </shape> + </item> + + <item android:bottom="2dp"> + <shape android:shape="rectangle" android:dither="true"> + <corners android:radius="2dp" /> + <solid android:color="@android:color/darker_gray" /> + + <padding android:bottom="8dp" + android:left="8dp" + android:right="8dp" + android:top="8dp" /> + </shape> + </item> +</layer-list>
\ No newline at end of file |