aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/reader_tag_header_view.xml
diff options
context:
space:
mode:
Diffstat (limited to 'WordPress/src/main/res/layout/reader_tag_header_view.xml')
-rw-r--r--WordPress/src/main/res/layout/reader_tag_header_view.xml46
1 files changed, 46 insertions, 0 deletions
diff --git a/WordPress/src/main/res/layout/reader_tag_header_view.xml b/WordPress/src/main/res/layout/reader_tag_header_view.xml
new file mode 100644
index 000000000..065378350
--- /dev/null
+++ b/WordPress/src/main/res/layout/reader_tag_header_view.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/layout_tag_info"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="@color/white"
+ android:orientation="vertical">
+
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="@dimen/reader_card_content_padding"
+ android:layout_marginRight="@dimen/reader_card_content_padding"
+ android:minHeight="@dimen/toolbar_height"
+ android:paddingLeft="@dimen/reader_card_margin"
+ android:paddingRight="@dimen/reader_card_margin">
+
+ <org.wordpress.android.widgets.WPTextView
+ android:id="@+id/text_tag"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_centerVertical="true"
+ android:layout_toLeftOf="@+id/follow_button"
+ android:ellipsize="end"
+ android:maxLines="1"
+ android:textColor="@color/grey_dark"
+ android:textSize="@dimen/text_sz_large"
+ tools:text="text_tag" />
+
+ <org.wordpress.android.ui.reader.views.ReaderFollowButton
+ android:id="@+id/follow_button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true" />
+
+ </RelativeLayout>
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1dp"
+ android:background="@color/grey_lighten_20" />
+
+</LinearLayout> \ No newline at end of file