aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/share_intent_receiver_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'WordPress/src/main/res/layout/share_intent_receiver_dialog.xml')
-rw-r--r--WordPress/src/main/res/layout/share_intent_receiver_dialog.xml58
1 files changed, 58 insertions, 0 deletions
diff --git a/WordPress/src/main/res/layout/share_intent_receiver_dialog.xml b/WordPress/src/main/res/layout/share_intent_receiver_dialog.xml
new file mode 100644
index 000000000..a86880199
--- /dev/null
+++ b/WordPress/src/main/res/layout/share_intent_receiver_dialog.xml
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:background="@drawable/dialog_full_holo_light"
+ android:minWidth="@dimen/default_dialog_width"
+ android:orientation="vertical">
+
+ <ScrollView
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="@dimen/margin_large"
+ android:orientation="vertical">
+
+ <TextView
+ android:id="@+id/blog_spinner_title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/select_a_blog"
+ android:textAllCaps="true"
+ android:textSize="@dimen/text_sz_small"/>
+
+ <Spinner
+ android:id="@+id/blog_spinner"
+ style="@style/DropDownNav.WordPress"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"/>
+
+ <TextView
+ android:id="@+id/action_spinner_title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/share_action_title"
+ android:textAllCaps="true"
+ android:textSize="@dimen/text_sz_small"/>
+
+ <Spinner
+ android:id="@+id/action_spinner"
+ style="@style/DropDownNav.WordPress"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"/>
+ </LinearLayout>
+ </ScrollView>
+
+ <Button
+ android:id="@+id/share_intent_receiver_button"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:onClick="onShareClicked"
+ android:text="@string/share_action"/>
+</LinearLayout>