aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/preference_layout.xml
diff options
context:
space:
mode:
Diffstat (limited to 'WordPress/src/main/res/layout/preference_layout.xml')
-rw-r--r--WordPress/src/main/res/layout/preference_layout.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/WordPress/src/main/res/layout/preference_layout.xml b/WordPress/src/main/res/layout/preference_layout.xml
new file mode 100644
index 000000000..9e3c3d845
--- /dev/null
+++ b/WordPress/src/main/res/layout/preference_layout.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:padding="@dimen/margin_extra_large">
+
+ <LinearLayout
+ android:id="@+android:id/widget_frame"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true"
+ android:gravity="center_vertical"
+ android:orientation="vertical" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_alignParentLeft="true"
+ android:layout_centerVertical="true"
+ android:layout_toLeftOf="@android:id/widget_frame"
+ android:orientation="vertical">
+
+ <org.wordpress.android.widgets.WPTextView
+ android:id="@+android:id/title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textColor="@color/calypso_title_text"
+ android:textSize="@dimen/text_sz_large" />
+
+ <org.wordpress.android.widgets.WPTextView
+ android:id="@+android:id/summary"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textColor="@color/calypso_subtitle_text"
+ android:textSize="@dimen/text_sz_medium" />
+
+ </LinearLayout>
+
+
+</RelativeLayout> \ No newline at end of file