Commit 0699b0b6 authored by wanglei's avatar wanglei

Merge remote-tracking branch 'origin/master'

parents 872441d4 2a507f18
<?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:id="@+id/cl_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ef7246">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_app_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="13dp"
android:layout_marginTop="15dp"
android:text="@string/files_manager"
android:textColor="@color/white"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.core.widget.NestedScrollView
android:id="@+id/sv_nested"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="10dp"
android:background="@color/white"
android:scrollbars="none"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_app_name">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:layout_height="404dp"
android:scaleType="fitXY"
android:importantForAccessibility="no"
android:src="@mipmap/home_bg"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="22dp"
android:layout_marginTop="10dp"
android:orientation="vertical"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/ll_storage_used"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:visibility="invisible"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_storage_used"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="17%"
android:textColor="@color/white"
android:textSize="16sp"
android:textStyle="bold" />
</androidx.appcompat.widget.LinearLayoutCompat>
<com.base.scanqrclear.luma.MyProgressBar
android:id="@+id/pb_storage_used"
android:layout_width="96dp"
android:layout_height="4dp"
android:layout_marginTop="4dp"
app:cRadius="10dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ll_storage_used"
app:max="100"
app:pBgColor="@color/white"
app:pColor="@color/color_e75506"
app:progress="0"
app:progressDirection="0" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="@string/storage_used"
android:textColor="@color/white"
android:textSize="12sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/pb_storage_used" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginEnd="22dp"
android:orientation="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/ll_memory_used"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:visibility="invisible"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_memory_used"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="67%"
android:textColor="@color/white"
android:textSize="16sp"
android:textStyle="bold" />
</androidx.appcompat.widget.LinearLayoutCompat>
<com.base.scanqrclear.luma.MyProgressBar
android:id="@+id/pb_memory_used"
android:layout_width="96dp"
android:layout_height="4dp"
android:layout_marginTop="4dp"
app:cRadius="10dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ll_memory_used"
app:max="100"
app:pBgColor="@color/white"
app:pColor="@color/color_e75506"
app:pEndColor="@color/color_ff9a0c"
app:pStartColor="@color/color_ffc067"
app:progress="0"
app:progressDirection="1" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="@string/memory_used"
android:textColor="@color/white"
android:textSize="12sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/pb_memory_used" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_shan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="52dp"
android:src="@mipmap/shan"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.base.scanqrclear.luma.CircleBorderView
android:id="@+id/iv_circle_border"
android:layout_width="160dp"
android:layout_height="160dp"
app:layout_constraintBottom_toBottomOf="@id/iv_shan"
app:layout_constraintEnd_toEndOf="@id/iv_shan"
app:layout_constraintStart_toStartOf="@id/iv_shan"
app:layout_constraintTop_toTopOf="@id/iv_shan" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_junk_files"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/junk_files"
android:textColor="@color/colorPrimary"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="@id/iv_shan"
app:layout_constraintEnd_toEndOf="@id/iv_shan"
app:layout_constraintStart_toStartOf="@id/iv_shan"
app:layout_constraintTop_toTopOf="@id/iv_shan" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_clean"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="21dp"
android:background="@drawable/bg_ffffff_20"
android:gravity="center"
android:paddingHorizontal="19dp"
android:paddingVertical="10dp"
android:text="@string/clean"
android:textAllCaps="true"
android:textColor="@color/color_f78950"
android:textSize="18sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_shan" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_upward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:src="@mipmap/ic_jiantou2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_clean" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_function"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
android:paddingVertical="14dp"
app:layout_constraintTop_toBottomOf="@id/iv_upward" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_hot_tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:background="@color/white"
app:layout_constraintTop_toBottomOf="@id/rv_function">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_hot_tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="22dp"
android:layout_marginTop="15dp"
android:text="@string/hot_tools"
android:textColor="@color/color_9b9595"
android:textSize="16sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_more"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="14dp"
android:background="@drawable/white_background_top"
android:paddingBottom="9dp"
app:layout_constraintTop_toBottomOf="@id/tv_hot_tools" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="9dp"
android:background="@color/white"
app:layout_constraintTop_toBottomOf="@id/cl_hot_tools">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_have"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="23dp"
android:text="@string/have_been_with_you_for"
android:textColor="@color/black"
android:textSize="14sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_day"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:text="@string/days"
android:textColor="@color/colorPrimary"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_have" />
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/lottie_animation"
android:layout_width="wrap_content"
android:layout_height="88dp"
android:layout_marginTop="6dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_day"
app:lottie_autoPlay="true"
app:lottie_fileName="home_bottom.json"
app:lottie_loop="true" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?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="wrap_content"
android:layout_marginTop="13dp">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:src="@mipmap/icon_junk_scan"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/tv_hot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:layout_marginStart="28dp"
android:gravity="center"
android:background="@mipmap/icon_hot"
android:text="@string/hot"
android:textColor="@color/white"
android:textSize="12sp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="@id/iv_icon" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_marginHorizontal="10dp"
android:gravity="center"
android:text="@string/app_name"
android:textColor="@color/color_4f4f4f"
android:textSize="12sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_icon" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?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="wrap_content">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="22dp"
android:layout_marginStart="28dp"
android:src="@mipmap/icon_compression_1"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="11dp"
android:text="@string/app_name"
android:textColor="@color/color_4f4f4f"
android:textSize="16sp"
app:layout_constraintTop_toTopOf="@id/iv_icon"
app:layout_constraintBottom_toBottomOf="@id/iv_icon"
app:layout_constraintStart_toEndOf="@id/iv_icon"
app:layout_constraintEnd_toStartOf="@id/iv_more" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/iv_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="10dp"
android:src="@mipmap/icon_jiantou"
app:layout_constraintTop_toTopOf="@id/iv_icon"
app:layout_constraintBottom_toBottomOf="@id/iv_icon"
app:layout_constraintEnd_toEndOf="parent" />
<View
android:id="@+id/view_line"
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_marginTop="18dp"
android:background="@color/color_f9f9fc"
app:layout_constraintStart_toStartOf="@id/iv_icon"
app:layout_constraintEnd_toEndOf="@id/iv_more"
app:layout_constraintTop_toBottomOf="@id/iv_icon" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
......@@ -109,4 +109,17 @@
<string name="guide_3">Die verschiedenen Informationen, die Sie teilen möchten, in QR-Codes bearbeiten</string>
<string name="continue_">Weiter</string>
<string name="complete">Fertig</string>
<string name="files_manager">Files Manager</string>
<string name="storage_used">Storage Used</string>
<string name="memory_used">Memory Used</string>
<string name="junk_files">Junk Files</string>
<string name="hot_tools">Hot Tools</string>
<string name="have_been_with_you_for">Have been with you for</string>
<string name="days">days</string>
<string name="hot">Hot</string>
<string name="screenshot_clean">Screenshot Clean</string>
<string name="similar_photos">Similar Photos</string>
<string name="junk_scan">Junk Scan</string>
<string name="whatsapp_clean">WhatsApp Clean</string>
<string name="app_process">App Process</string>
</resources>
\ No newline at end of file
......@@ -109,4 +109,17 @@
<string name="guide_3">Edita la información que deseas compartir en códigos QR</string>
<string name="continue_">Continuar</string>
<string name="complete">Completar</string>
<string name="files_manager">Files Manager</string>
<string name="storage_used">Storage Used</string>
<string name="memory_used">Memory Used</string>
<string name="junk_files">Junk Files</string>
<string name="hot_tools">Hot Tools</string>
<string name="have_been_with_you_for">Have been with you for</string>
<string name="days">days</string>
<string name="hot">Hot</string>
<string name="screenshot_clean">Screenshot Clean</string>
<string name="similar_photos">Similar Photos</string>
<string name="junk_scan">Junk Scan</string>
<string name="whatsapp_clean">WhatsApp Clean</string>
<string name="app_process">App Process</string>
</resources>
\ No newline at end of file
......@@ -110,4 +110,17 @@
<string name="guide_3">共有したいさまざまな情報をQRコードに編集します</string>
<string name="continue_">続ける</string>
<string name="complete">完了</string>
<string name="files_manager">Files Manager</string>
<string name="storage_used">Storage Used</string>
<string name="memory_used">Memory Used</string>
<string name="junk_files">Junk Files</string>
<string name="hot_tools">Hot Tools</string>
<string name="have_been_with_you_for">Have been with you for</string>
<string name="days">days</string>
<string name="hot">Hot</string>
<string name="screenshot_clean">Screenshot Clean</string>
<string name="similar_photos">Similar Photos</string>
<string name="junk_scan">Junk Scan</string>
<string name="whatsapp_clean">WhatsApp Clean</string>
<string name="app_process">App Process</string>
</resources>
\ No newline at end of file
......@@ -109,4 +109,17 @@
<string name="guide_3">공유하고 싶은 다양한 정보를 QR 코드로 편집합니다</string>
<string name="continue_">계속</string>
<string name="complete">완료</string>
<string name="files_manager">Files Manager</string>
<string name="storage_used">Storage Used</string>
<string name="memory_used">Memory Used</string>
<string name="junk_files">Junk Files</string>
<string name="hot_tools">Hot Tools</string>
<string name="have_been_with_you_for">Have been with you for</string>
<string name="days">days</string>
<string name="hot">Hot</string>
<string name="screenshot_clean">Screenshot Clean</string>
<string name="similar_photos">Similar Photos</string>
<string name="junk_scan">Junk Scan</string>
<string name="whatsapp_clean">WhatsApp Clean</string>
<string name="app_process">App Process</string>
</resources>
\ No newline at end of file
......@@ -110,4 +110,17 @@
<string name="guide_3">将您想要分享的各种信息编辑成二维码</string>
<string name="continue_">继续</string>
<string name="complete">完成</string>
<string name="files_manager">Files Manager</string>
<string name="storage_used">Storage Used</string>
<string name="memory_used">Memory Used</string>
<string name="junk_files">Junk Files</string>
<string name="hot_tools">Hot Tools</string>
<string name="have_been_with_you_for">Have been with you for</string>
<string name="days">days</string>
<string name="hot">Hot</string>
<string name="screenshot_clean">Screenshot Clean</string>
<string name="similar_photos">Similar Photos</string>
<string name="junk_scan">Junk Scan</string>
<string name="whatsapp_clean">WhatsApp Clean</string>
<string name="app_process">App Process</string>
</resources>
\ No newline at end of file
......@@ -116,6 +116,19 @@
<string name="guide_3">Edit the various information you want to share into QR codes</string>
<string name="continue_">Continue</string>
<string name="complete">Complete</string>
<string name="files_manager">Files Manager</string>
<string name="storage_used">Storage Used</string>
<string name="memory_used">Memory Used</string>
<string name="junk_files">Junk Files</string>
<string name="hot_tools">Hot Tools</string>
<string name="have_been_with_you_for">Have been with you for</string>
<string name="days">days</string>
<string name="hot">Hot</string>
<string name="screenshot_clean">Screenshot Clean</string>
<string name="similar_photos">Similar Photos</string>
<string name="junk_scan">Junk Scan</string>
<string name="whatsapp_clean">WhatsApp Clean</string>
<string name="app_process">App Process</string>
<string name="junk_scan">Junk Scan</string>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment