mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
This commit refactors the code for sharing forums, so it can be used for sharing blogs as well. It does not yet include code for responding to blog invitations.
41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.NestedScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fillViewport="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="@dimen/margin_activity_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/introductionText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginTop="@dimen/margin_medium"
|
|
android:layout_weight="1"
|
|
android:gravity="top"
|
|
android:textSize="@dimen/text_size_medium"
|
|
android:textColor="@color/briar_text_primary"
|
|
android:text="@string/forum_share_message"/>
|
|
|
|
<EditText
|
|
android:id="@+id/invitationMessageView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/margin_medium"
|
|
android:gravity="bottom"
|
|
android:hint="@string/introduction_message_hint"
|
|
android:inputType="text|textMultiLine|textCapSentences"/>
|
|
|
|
<Button
|
|
android:id="@+id/shareForumButton"
|
|
style="@style/BriarButton"
|
|
android:text="@string/forum_share_button"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.NestedScrollView> |