summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/drawable-hdpi/navigation_expand.pngbin0 -> 1444 bytes
-rw-r--r--res/drawable-hdpi/vertical_divider.pngbin0 -> 243 bytes
-rw-r--r--res/drawable-v11/borderless_button.xml13
-rw-r--r--res/drawable/borderless_button.xml4
-rw-r--r--res/layout/feeditemlist_item.xml15
5 files changed, 28 insertions, 4 deletions
diff --git a/res/drawable-hdpi/navigation_expand.png b/res/drawable-hdpi/navigation_expand.png
new file mode 100644
index 000000000..8225e74b7
--- /dev/null
+++ b/res/drawable-hdpi/navigation_expand.png
Binary files differ
diff --git a/res/drawable-hdpi/vertical_divider.png b/res/drawable-hdpi/vertical_divider.png
new file mode 100644
index 000000000..13119a132
--- /dev/null
+++ b/res/drawable-hdpi/vertical_divider.png
Binary files differ
diff --git a/res/drawable-v11/borderless_button.xml b/res/drawable-v11/borderless_button.xml
new file mode 100644
index 000000000..cfc630005
--- /dev/null
+++ b/res/drawable-v11/borderless_button.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_pressed="true"><shape android:shape="rectangle">
+ <solid android:color="#33B5E5" />
+ </shape></item>
+ <item android:state_focused="true"><shape android:shape="rectangle">
+ <solid android:color="#33B5E5" />
+ </shape></item>
+ <item><shape android:shape="rectangle">
+ <solid android:color="@android:color/transparent" />
+ </shape></item>
+
+</selector> \ No newline at end of file
diff --git a/res/drawable/borderless_button.xml b/res/drawable/borderless_button.xml
index cfc630005..d44878b6f 100644
--- a/res/drawable/borderless_button.xml
+++ b/res/drawable/borderless_button.xml
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"><shape android:shape="rectangle">
- <solid android:color="#33B5E5" />
+ <solid android:color="#FEBB20" />
</shape></item>
<item android:state_focused="true"><shape android:shape="rectangle">
- <solid android:color="#33B5E5" />
+ <solid android:color="#FEBB20" />
</shape></item>
<item><shape android:shape="rectangle">
<solid android:color="@android:color/transparent" />
diff --git a/res/layout/feeditemlist_item.xml b/res/layout/feeditemlist_item.xml
index 2629265bc..0e40e762f 100644
--- a/res/layout/feeditemlist_item.xml
+++ b/res/layout/feeditemlist_item.xml
@@ -13,14 +13,25 @@
android:layout_height="wrap_content"
android:layout_below="@id/txtvItemname"
/>
- <Button
+ <ImageButton
android:id="@+id/butAction"
android:layout_width="wrap_content"
android:layout_height="match_parent"
- android:text="More"
+ android:padding="8dp"
+ android:src="@drawable/navigation_expand"
android:background="@drawable/borderless_button"
android:layout_alignParentRight="true"
android:focusable="false"
+ android:focusableInTouchMode="false"
+ android:clickable="false"
/>
+ <ImageView
+ android:layout_height="match_parent"
+ android:layout_width="wrap_content"
+ android:src="@drawable/vertical_divider"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true"
+ android:layout_marginRight="28dp"
+ android:focusable="false"/>
</RelativeLayout>