aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-10-30 17:37:56 -0700
committerScott Jackson <daneren2005@gmail.com>2015-10-30 17:37:56 -0700
commitcdd0f0638df1fe5b8ded6b1be2b05af43f568a36 (patch)
tree15cac18ba2f639ffc4c564a2f54aaaa149cc98d0 /app/src/main/res/layout
parent2f0a4aed12d8e1e18e22dabf358a4a27ae99247c (diff)
downloaddsub-cdd0f0638df1fe5b8ded6b1be2b05af43f568a36.tar.gz
dsub-cdd0f0638df1fe5b8ded6b1be2b05af43f568a36.tar.bz2
dsub-cdd0f0638df1fe5b8ded6b1be2b05af43f568a36.zip
#590 Missed in previous commit
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/newest_episode_header.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/src/main/res/layout/newest_episode_header.xml b/app/src/main/res/layout/newest_episode_header.xml
new file mode 100644
index 00000000..bd78275e
--- /dev/null
+++ b/app/src/main/res/layout/newest_episode_header.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <TextView
+ android:id="@+id/item_name"
+ android:layout_width="0dp"
+ android:layout_weight="1"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:background="@android:color/transparent"
+ android:textColor="?attr/colorAccent"
+ android:textStyle="bold"
+ android:paddingLeft="6dp"
+ android:paddingRight="6dp"
+ android:paddingTop="8dp"
+ android:paddingBottom="8dp"/>
+
+ <ImageView
+ android:id="@+id/item_select"
+ android:src="?attr/select_server"
+ android:layout_gravity="center_vertical"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingRight="10dp"
+ android:paddingLeft="10dp"
+ android:paddingTop="10dp"
+ android:background="?attr/selectableItemBackgroundBorderless"
+ android:clickable="true"/>
+</LinearLayout> \ No newline at end of file