|
|
@@ -1,6 +1,267 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent">
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/background">
|
|
|
|
|
|
+ <FrameLayout
|
|
|
+ android:id="@+id/toolbar"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/light_green"
|
|
|
+ android:fitsSystemWindows="true"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.Toolbar
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/light_green">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/tab_toolkit"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+ </androidx.appcompat.widget.Toolbar>
|
|
|
+ </FrameLayout>
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/toolbar">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingLeft="16dp"
|
|
|
+ android:paddingTop="22dp"
|
|
|
+ android:paddingRight="16dp">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="79dp"
|
|
|
+ android:layout_marginBottom="17dp"
|
|
|
+ android:background="@drawable/bg_home_btn"
|
|
|
+ android:gravity="start|center"
|
|
|
+ android:minHeight="79dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="38dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:src="@mipmap/tool_icon_notification" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center|start"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/notification_cleaner"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/no_longer_disturbed_by_notifications"
|
|
|
+ android:textColor="#AAACAD"
|
|
|
+ android:textSize="14sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="26dp"
|
|
|
+ android:layout_height="26dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:src="@mipmap/icon_into" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="79dp"
|
|
|
+ android:layout_marginBottom="17dp"
|
|
|
+ android:background="@drawable/bg_home_btn"
|
|
|
+ android:gravity="start|center"
|
|
|
+ android:minHeight="79dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="38dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:src="@mipmap/tool_icon_file" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center|start"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/large_files_cleaner"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/clean_large_files"
|
|
|
+ android:textColor="#AAACAD"
|
|
|
+ android:textSize="14sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="26dp"
|
|
|
+ android:layout_height="26dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:src="@mipmap/icon_into" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="79dp"
|
|
|
+ android:layout_marginBottom="17dp"
|
|
|
+ android:background="@drawable/bg_home_btn"
|
|
|
+ android:gravity="start|center"
|
|
|
+ android:minHeight="79dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="38dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:src="@mipmap/tool_icon_trash" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center|start"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/uninstall_apps"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/remove_unused_apps"
|
|
|
+ android:textColor="#AAACAD"
|
|
|
+ android:textSize="14sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="26dp"
|
|
|
+ android:layout_height="26dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:src="@mipmap/icon_into" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="79dp"
|
|
|
+ android:layout_marginBottom="17dp"
|
|
|
+ android:background="@drawable/bg_home_btn"
|
|
|
+ android:gravity="start|center"
|
|
|
+ android:minHeight="79dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="38dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:src="@mipmap/tool_icon_permission" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center|start"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/sensitive_permissions"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/view_apps_with_sensitive_permissions"
|
|
|
+ android:textColor="#AAACAD"
|
|
|
+ android:textSize="14sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="26dp"
|
|
|
+ android:layout_height="26dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:src="@mipmap/icon_into" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="79dp"
|
|
|
+ android:layout_marginBottom="17dp"
|
|
|
+ android:background="@drawable/bg_home_btn"
|
|
|
+ android:gravity="start|center"
|
|
|
+ android:minHeight="79dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="38dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:src="@mipmap/tool_icon_lock" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="38dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center|start"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/information_protection"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="15sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/protect_your_information_privacy"
|
|
|
+ android:textColor="#AAACAD"
|
|
|
+ android:textSize="14sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="26dp"
|
|
|
+ android:layout_height="26dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:src="@mipmap/icon_into" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </ScrollView>
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|