2020-01-13 23:08:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/contentView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@drawable/default_session_background"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
style="@style/SessionEditText"
|
|
|
|
android:id="@+id/publicKeyEditText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/large_spacing"
|
|
|
|
android:layout_marginTop="@dimen/large_spacing"
|
|
|
|
android:layout_marginRight="@dimen/large_spacing"
|
2020-05-25 06:12:24 +00:00
|
|
|
android:hint="@string/fragment_enter_public_key_edit_text_hint" />
|
2020-01-13 23:08:39 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/large_spacing"
|
|
|
|
android:layout_marginTop="@dimen/medium_spacing"
|
|
|
|
android:layout_marginRight="@dimen/large_spacing"
|
|
|
|
android:textSize="@dimen/small_font_size"
|
|
|
|
android:textColor="@color/text"
|
|
|
|
android:alpha="0.6"
|
|
|
|
android:textAlignment="center"
|
2020-05-25 06:12:24 +00:00
|
|
|
android:text="@string/fragment_enter_public_key_explanation" />
|
2020-01-13 23:08:39 +00:00
|
|
|
|
2020-05-11 06:19:26 +00:00
|
|
|
<org.thoughtcrime.securesms.loki.views.LabeledSeparatorView
|
2020-01-13 23:08:39 +00:00
|
|
|
android:id="@+id/separatorView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_marginLeft="@dimen/large_spacing"
|
|
|
|
android:layout_marginTop="@dimen/large_spacing"
|
|
|
|
android:layout_marginRight="@dimen/large_spacing" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/publicKeyTextView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/large_spacing"
|
|
|
|
android:layout_marginTop="@dimen/large_spacing"
|
|
|
|
android:layout_marginRight="@dimen/large_spacing"
|
|
|
|
android:textSize="@dimen/medium_font_size"
|
|
|
|
android:textColor="@color/text"
|
|
|
|
android:fontFamily="@font/space_mono_regular"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:text="05987d601943c267879be41830888066c6a024cbdc9a548d06813924bf3372ea78" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/large_spacing"
|
|
|
|
android:layout_marginTop="@dimen/large_spacing"
|
|
|
|
android:layout_marginRight="@dimen/large_spacing"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
style="@style/MediumUnimportantFilledButton"
|
|
|
|
android:id="@+id/copyButton"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="@dimen/medium_button_height"
|
|
|
|
android:layout_weight="1"
|
2020-05-25 06:12:24 +00:00
|
|
|
android:text="@string/copy" />
|
2020-01-13 23:08:39 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
style="@style/MediumUnimportantFilledButton"
|
|
|
|
android:id="@+id/shareButton"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="@dimen/medium_button_height"
|
|
|
|
android:layout_weight="1"
|
2020-07-17 02:10:25 +00:00
|
|
|
android:layout_marginStart="@dimen/medium_spacing"
|
2020-05-25 06:12:24 +00:00
|
|
|
android:text="@string/share" />
|
2020-01-13 23:08:39 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
style="@style/MediumProminentOutlineButton"
|
|
|
|
android:id="@+id/createPrivateChatButton"
|
|
|
|
android:layout_width="196dp"
|
|
|
|
android:layout_height="@dimen/medium_button_height"
|
|
|
|
android:layout_marginBottom="@dimen/medium_spacing"
|
2020-05-25 06:12:24 +00:00
|
|
|
android:text="@string/next" />
|
2020-01-13 23:08:39 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|