2016-07-20 20:46:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-08 15:43:38 +02:00
|
|
|
android:id="@+id/settings_scrollview"
|
2016-07-20 20:46:51 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/settings_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<RelativeLayout
|
2016-12-15 22:49:23 +01:00
|
|
|
android:id="@+id/settings_customize_colors_holder"
|
2016-07-20 20:46:51 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-12-27 22:39:26 +01:00
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
2016-09-07 22:59:03 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2016-07-20 20:46:51 +02:00
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
2016-12-25 15:17:15 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
2017-02-26 19:37:54 +01:00
|
|
|
android:id="@+id/settings_customize_colors"
|
2016-07-20 20:46:51 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
2016-12-27 22:39:26 +01:00
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
2016-12-15 22:49:23 +01:00
|
|
|
android:text="@string/customize_colors"/>
|
2016-07-20 20:46:51 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
2016-08-23 21:18:40 +02:00
|
|
|
|
2017-03-17 22:54:44 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_manage_included_folders_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
|
|
|
android:id="@+id/settings_manage_included_folders"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/manage_included_folders"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-02-26 19:37:54 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_manage_excluded_folders_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
|
|
|
android:id="@+id/settings_manage_excluded_folders"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/manage_excluded_folders"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-11-08 12:08:36 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_use_english_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_use_english"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/use_english_language"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2016-10-09 14:14:58 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_show_hidden_folders_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-12-27 22:39:26 +01:00
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
2016-10-09 14:14:58 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
2016-12-18 20:02:18 +01:00
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_show_hidden_folders"
|
|
|
|
android:layout_width="match_parent"
|
2016-10-09 14:14:58 +02:00
|
|
|
android:layout_height="wrap_content"
|
2016-12-18 20:02:18 +01:00
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
2016-12-27 22:39:26 +01:00
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
2017-12-13 19:42:40 +01:00
|
|
|
android:text="@string/show_hidden_items"/>
|
2016-10-09 14:14:58 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
2016-10-25 20:42:23 +02:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_autoplay_videos_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-12-27 22:39:26 +01:00
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
2016-10-25 20:42:23 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
2016-12-18 20:02:18 +01:00
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_autoplay_videos"
|
|
|
|
android:layout_width="match_parent"
|
2016-10-25 20:42:23 +02:00
|
|
|
android:layout_height="wrap_content"
|
2016-12-18 20:02:18 +01:00
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
2016-12-27 22:39:26 +01:00
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
2016-10-25 20:42:23 +02:00
|
|
|
android:text="@string/autoplay_videos"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2016-12-10 21:16:53 +01:00
|
|
|
|
2016-12-28 20:31:18 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_loop_videos_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_loop_videos"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/loop_videos"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-03-01 23:05:14 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_animate_gifs_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_animate_gifs"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/animate_gifs"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-03-10 06:47:54 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_max_brightness_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_max_brightness"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/max_brightness"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-03-23 20:32:52 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_crop_thumbnails_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_crop_thumbnails"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/crop_thumbnails"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-05-14 11:50:30 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_dark_background_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_dark_background"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
2017-12-19 08:44:17 +01:00
|
|
|
android:text="@string/black_background_at_fullscreen"/>
|
2017-05-14 11:50:30 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-06-18 21:16:40 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_scroll_horizontally_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
2017-06-24 21:42:53 +02:00
|
|
|
android:padding="@dimen/activity_margin">
|
2017-06-18 21:16:40 +02:00
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_scroll_horizontally"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/scroll_thumbnails_horizontally"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-06-26 22:52:00 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_hide_system_ui_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_hide_system_ui"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/hide_system_ui_at_fullscreen"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-07-09 20:34:14 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_replace_share_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_replace_share"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/replace_share_with_rotate"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-07-29 17:48:25 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_password_protection_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_password_protection"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
2017-08-07 22:17:37 +02:00
|
|
|
android:text="@string/password_protect_hidden_items"/>
|
2017-07-29 17:48:25 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-11-08 23:13:02 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_app_password_protection_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_app_password_protection"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/password_protect_whole_app"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-09-01 11:37:56 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_delete_empty_folders_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_delete_empty_folders"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/delete_empty_folders"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-09-01 11:51:11 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_allow_video_gestures_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_allow_video_gestures"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/allow_video_gestures"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-10-23 17:26:33 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_show_media_count_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_show_media_count"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/show_media_count"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-10-28 17:50:50 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_keep_last_modified_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_keep_last_modified"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/keep_last_modified"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-12-06 14:42:17 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_show_info_bubble_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_show_info_bubble"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/show_info_bubble"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-10-18 19:34:31 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_show_extended_details_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MySwitchCompat
|
|
|
|
android:id="@+id/settings_show_extended_details"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/show_extended_details"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-10-18 23:38:35 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/settings_manage_extended_details_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
|
|
|
android:id="@+id/settings_manage_extended_details"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingStart="@dimen/medium_margin"
|
|
|
|
android:text="@string/manage_extended_details"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-03-23 21:02:32 +01:00
|
|
|
<RelativeLayout
|
2017-04-01 21:17:49 +02:00
|
|
|
android:id="@+id/settings_screen_rotation_holder"
|
2017-03-23 21:02:32 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
2017-04-01 21:17:49 +02:00
|
|
|
android:paddingBottom="@dimen/bigger_margin"
|
|
|
|
android:paddingLeft="@dimen/activity_margin"
|
|
|
|
android:paddingRight="@dimen/activity_margin"
|
|
|
|
android:paddingTop="@dimen/bigger_margin">
|
2017-03-23 21:02:32 +01:00
|
|
|
|
2017-04-01 21:17:49 +02:00
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
|
|
|
android:id="@+id/settings_screen_rotation_label"
|
2017-03-23 21:02:32 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-04-01 21:17:49 +02:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toLeftOf="@+id/settings_screen_rotation"
|
|
|
|
android:layout_toStartOf="@+id/settings_screen_rotation"
|
2017-03-23 21:02:32 +01:00
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
2017-04-01 21:17:49 +02:00
|
|
|
android:paddingRight="@dimen/medium_margin"
|
|
|
|
android:text="@string/screen_rotation_by"/>
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
|
|
|
android:id="@+id/settings_screen_rotation"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginEnd="@dimen/small_margin"
|
|
|
|
android:layout_marginRight="@dimen/small_margin"
|
|
|
|
android:background="@null"
|
|
|
|
android:clickable="false"/>
|
2017-03-23 21:02:32 +01:00
|
|
|
|
|
|
|
</RelativeLayout>
|
2016-07-20 20:46:51 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|