session-android/app/src/main/res/layout/activity_settings.xml

301 lines
13 KiB
XML
Raw Normal View History

2020-01-06 04:26:52 +01:00
<?xml version="1.0" encoding="utf-8"?>
2020-01-07 04:51:11 +01:00
<RelativeLayout
2020-01-06 04:26:52 +01:00
xmlns:android="http://schemas.android.com/apk/res/android"
2020-01-07 02:00:30 +01:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-08-20 08:47:15 +02:00
xmlns:tools="http://schemas.android.com/tools"
2020-01-07 04:51:11 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-07-09 03:14:21 +02:00
tools:context="org.thoughtcrime.securesms.preferences.SettingsActivity"
tools:theme="@style/Theme.Session.DayNight.NoActionBar"
tools:menu="@menu/settings_general">
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
<ScrollView
2020-01-06 04:26:52 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-01-07 04:51:11 +01:00
android:scrollbars="none">
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
<LinearLayout
2020-01-07 02:00:30 +01:00
android:layout_width="match_parent"
2020-01-07 04:51:11 +01:00
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_horizontal">
2020-01-07 02:00:30 +01:00
2021-07-09 05:18:48 +02:00
<org.thoughtcrime.securesms.components.ProfilePictureView
2020-01-07 04:51:11 +01:00
android:id="@+id/profilePictureView"
android:layout_width="@dimen/large_profile_picture_size"
android:layout_height="@dimen/large_profile_picture_size"
android:layout_marginTop="@dimen/medium_spacing" />
<RelativeLayout
2020-08-14 06:52:15 +02:00
android:id="@+id/ctnGroupNameSection"
2020-01-07 04:51:11 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/large_spacing"
android:layout_marginTop="@dimen/small_spacing"
android:layout_marginRight="@dimen/large_spacing">
2020-01-07 02:00:30 +01:00
2020-01-07 04:51:11 +01:00
<EditText
style="@style/SessionEditText"
android:id="@+id/displayNameEditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textAlignment="center"
android:paddingTop="12dp"
android:paddingBottom="12dp"
android:visibility="invisible"
android:hint="@string/activity_settings_display_name_edit_text_hint" />
2020-01-07 02:00:30 +01:00
<TextView
android:id="@+id/btnGroupNameDisplay"
2020-01-07 02:00:30 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2020-01-07 04:51:11 +01:00
android:layout_centerInParent="true"
2020-01-07 02:00:30 +01:00
android:textColor="@color/text"
android:textSize="@dimen/very_large_font_size"
2020-01-07 04:51:11 +01:00
android:textStyle="bold" />
2020-01-07 02:00:30 +01:00
2020-01-07 04:51:11 +01:00
</RelativeLayout>
2020-01-07 02:00:30 +01:00
2021-07-09 05:18:48 +02:00
<org.thoughtcrime.securesms.components.LabeledSeparatorView
2020-01-07 04:51:11 +01:00
android:id="@+id/separatorView"
android:layout_width="match_parent"
android:layout_height="32dp"
android:layout_marginLeft="@dimen/large_spacing"
android:layout_marginTop="20dp"
android:layout_marginRight="@dimen/large_spacing"/>
2020-01-07 02:00:30 +01:00
2020-01-07 04:51:11 +01:00
<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/large_font_size"
android:textColor="@color/text"
android:fontFamily="@font/space_mono_regular"
android:textAlignment="center"
tools:text="05987d601943c267879be41830888066c6a024cbdc9a548d06813924bf3372ea78" />
2020-01-07 02:00:30 +01:00
2020-01-07 04:51:11 +01:00
<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">
2020-01-07 02:00:30 +01:00
2020-01-07 04:51:11 +01:00
<Button
style="@style/Widget.Session.Button.Common.ProminentOutline"
2020-01-07 04:51:11 +01:00
android:id="@+id/copyButton"
android:layout_width="0dp"
android:layout_height="@dimen/medium_button_height"
android:layout_weight="1"
android:text="@string/copy" />
2020-01-07 02:00:30 +01:00
2020-01-07 04:51:11 +01:00
<Button
style="@style/Widget.Session.Button.Common.UnimportantOutline"
2020-01-07 04:51:11 +01:00
android:id="@+id/shareButton"
android:layout_width="0dp"
android:layout_height="@dimen/medium_button_height"
android:layout_weight="1"
2020-07-17 04:10:25 +02:00
android:layout_marginStart="@dimen/medium_spacing"
android:text="@string/share" />
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_marginTop="@dimen/large_spacing"
android:background="?android:dividerHorizontal" />
2020-01-07 02:00:30 +01:00
<TextView
2020-01-07 04:51:11 +01:00
android:id="@+id/privacyButton"
android:layout_width="match_parent"
android:layout_height="@dimen/setting_button_height"
android:background="@drawable/setting_button_background"
2020-01-07 02:00:30 +01:00
android:textColor="@color/text"
2020-01-07 04:51:11 +01:00
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
android:text="@string/activity_settings_privacy_button_title" />
2020-01-07 02:00:30 +01:00
2020-01-07 04:51:11 +01:00
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="?android:dividerHorizontal" />
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
<TextView
android:id="@+id/notificationsButton"
android:layout_width="match_parent"
android:layout_height="@dimen/setting_button_height"
android:background="@drawable/setting_button_background"
android:textColor="@color/text"
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
android:text="@string/activity_settings_notifications_button_title" />
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="?android:dividerHorizontal" />
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
<TextView
android:id="@+id/chatsButton"
android:layout_width="match_parent"
android:layout_height="@dimen/setting_button_height"
android:background="@drawable/setting_button_background"
android:textColor="@color/text"
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
android:text="@string/activity_settings_chats_button_title" />
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="?android:dividerHorizontal" />
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
<TextView
2021-05-19 05:47:04 +02:00
android:id="@+id/seedButton"
2020-01-07 04:51:11 +01:00
android:layout_width="match_parent"
android:layout_height="@dimen/setting_button_height"
android:background="@drawable/setting_button_background"
android:textColor="@color/text"
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
2021-05-19 05:47:04 +02:00
android:text="@string/activity_settings_recovery_phrase_button_title" />
2020-01-06 04:26:52 +01:00
2020-11-02 04:54:10 +01:00
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="?android:dividerHorizontal" />
<TextView
2021-05-19 05:47:04 +02:00
android:id="@+id/clearAllDataButton"
2020-11-02 04:54:10 +01:00
android:layout_width="match_parent"
android:layout_height="@dimen/setting_button_height"
android:background="@drawable/setting_button_background"
2021-05-19 05:47:04 +02:00
android:textColor="@color/destructive"
2020-11-02 04:54:10 +01:00
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
2021-05-19 05:47:04 +02:00
android:text="@string/activity_settings_clear_all_data_button_title" />
2020-11-02 04:54:10 +01:00
2020-01-07 04:51:11 +01:00
<View
android:layout_width="match_parent"
android:layout_height="1px"
2021-05-19 05:47:04 +02:00
android:layout_marginBottom="@dimen/medium_spacing"
android:background="?android:dividerHorizontal" />
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
<TextView
2021-09-17 08:44:32 +02:00
android:padding="@dimen/small_spacing"
2021-05-19 05:47:04 +02:00
android:id="@+id/sendInvitationButton"
2020-01-07 04:51:11 +01:00
android:layout_width="match_parent"
2021-05-19 05:47:04 +02:00
android:layout_height="wrap_content"
2020-01-07 04:51:11 +01:00
android:textColor="@color/text"
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
2021-05-19 05:47:04 +02:00
android:text="@string/activity_settings_invite_button_title" />
2020-01-06 04:26:52 +01:00
2021-07-14 06:17:40 +02:00
<TextView
2021-09-17 08:44:32 +02:00
android:padding="@dimen/small_spacing"
2021-07-14 06:17:40 +02:00
android:id="@+id/faqButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_spacing"
android:textColor="@color/text"
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
android:text="@string/activity_settings_faq_button_title" />
2020-01-07 04:51:11 +01:00
<TextView
2021-09-17 08:44:32 +02:00
android:padding="@dimen/small_spacing"
android:id="@+id/surveyButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_spacing"
android:textColor="@color/text"
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
android:text="@string/activity_settings_survey_feedback" />
<TextView
android:padding="@dimen/small_spacing"
android:id="@+id/supportButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_spacing"
android:textColor="@color/text"
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
android:text="@string/activity_settings_support" />
2021-09-17 08:44:32 +02:00
<TextView
android:padding="@dimen/small_spacing"
2021-05-19 05:47:04 +02:00
android:id="@+id/helpTranslateButton"
2020-01-07 04:51:11 +01:00
android:layout_width="match_parent"
2021-05-19 05:47:04 +02:00
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_spacing"
android:textColor="@color/text"
2020-01-07 04:51:11 +01:00
android:textSize="@dimen/medium_font_size"
android:textStyle="bold"
android:gravity="center"
android:text="@string/activity_settings_help_translate_session" />
2020-01-06 04:26:52 +01:00
2021-07-08 02:42:42 +02:00
<ImageView
android:id="@+id/oxenLogoImageView"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:src="@drawable/oxen_light_mode" />
<TextView
2020-03-05 04:24:10 +01:00
android:id="@+id/versionTextView"
android:layout_width="match_parent"
2020-03-05 04:24:10 +01:00
android:layout_height="wrap_content"
2021-07-08 02:42:42 +02:00
android:layout_marginTop="4dp"
2021-05-19 05:47:04 +02:00
android:layout_marginBottom="@dimen/medium_spacing"
android:gravity="center"
android:text="@string/version_s"
2020-03-05 04:24:10 +01:00
android:textColor="@color/text"
android:alpha="0.6"
android:textSize="@dimen/very_small_font_size" />
2020-01-07 04:51:11 +01:00
</LinearLayout>
2020-01-06 04:26:52 +01:00
2020-01-07 04:51:11 +01:00
</ScrollView>
<FrameLayout
android:animateLayoutChanges="true"
2020-01-07 04:51:11 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2021-05-19 05:47:04 +02:00
<RelativeLayout
android:id="@+id/loader"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#A4000000"
android:visibility="gone">
<com.github.ybq.android.spinkit.SpinKitView
style="@style/SpinKitView.Large.ThreeBounce"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_centerInParent="true"
app:SpinKit_Color="@android:color/white" />
2020-01-06 04:26:52 +01:00
</RelativeLayout>
2020-01-06 04:26:52 +01:00
</FrameLayout>
2021-05-19 05:47:04 +02:00
2020-01-07 04:51:11 +01:00
</RelativeLayout>