2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-06-18 12:15:19 +00:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
2018-03-18 08:30:22 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/color_background_secondary">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<include android:id="@+id/toolbar" layout="@layout/toolbar"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<android.support.v7.widget.CardView
|
|
|
|
android:layout_width="fill_parent"
|
2018-02-27 09:19:07 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-06-18 12:15:19 +00:00
|
|
|
android:layout_below="@id/toolbar"
|
|
|
|
android:layout_marginBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginTop="@dimen/activity_vertical_margin">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2018-02-27 09:19:07 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-06-18 12:15:19 +00:00
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/account_image_wrapper"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginTop="@dimen/publish_avatar_top_margin"
|
|
|
|
android:background="@drawable/account_image_border">
|
2018-02-27 09:19:07 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/account_image"
|
|
|
|
android:layout_width="@dimen/publish_avatar_size"
|
|
|
|
android:layout_height="@dimen/publish_avatar_size"/>
|
|
|
|
</FrameLayout>
|
2018-02-27 09:19:07 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/hint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/touch_to_choose_picture"
|
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1"/>
|
2018-02-27 09:19:07 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/secondary_hint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/or_long_press_for_default"
|
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1"/>
|
2018-02-27 09:19:07 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/hint_or_warning"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/button_bar"
|
|
|
|
android:layout_width="wrap_content"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-06-18 12:15:19 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentRight="true">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/cancel_button"
|
|
|
|
style="@style/Widget.Conversations.Button.Borderless"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/cancel"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
<View
|
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginBottom="7dp"
|
|
|
|
android:layout_marginTop="7dp"
|
|
|
|
android:background="?attr/divider"/>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/publish_button"
|
|
|
|
style="@style/Widget.Conversations.Button.Borderless"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:enabled="false"
|
|
|
|
android:text="@string/publish"/>
|
|
|
|
</LinearLayout>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-06-18 12:15:19 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
</layout>
|