blob: a86880199785f9cd6a8a4f9340fc05997e598807 [file] [log] [blame]
<?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>