mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
bb0ec65744
This should help eliminate string duplicates, as well as provide visibility into where strings in a resource file are being used.
60 lines
1.9 KiB
XML
60 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView android:id="@+id/ScrollView"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="10dip">
|
|
|
|
<TextView android:id="@+id/description_text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="17dip"
|
|
android:layout_marginBottom="5dip" />
|
|
|
|
<TextView android:id="@+id/signature_text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="17dip"
|
|
android:textStyle="italic"
|
|
android:layout_marginBottom="10dip" />
|
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button android:id="@+id/verify_session_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/receive_key_activity__session"
|
|
android:visibility="gone"
|
|
android:gravity="center" />
|
|
|
|
<Button android:id="@+id/verify_identity_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/receive_key_activity__identities"
|
|
android:visibility="gone"
|
|
android:gravity="center" />
|
|
|
|
<Button android:id="@+id/ok_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/receive_key_activity__complete_exchange"
|
|
android:gravity="center"/>
|
|
|
|
<Button android:id="@+id/cancel_button"
|
|
android:text="@android:string/cancel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
|
|
|