mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Once applied this commit will change the font colors according to the design and move all themes into a dedicated file. Closes #333
44 lines
1.4 KiB
XML
44 lines
1.4 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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/forum_share_button"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.NestedScrollView> |