diff --git a/app/src/main/java/com/tools/device/devcheck/adapter/CpuListAdapter.kt b/app/src/main/java/com/tools/device/devcheck/adapter/CpuListAdapter.kt new file mode 100644 index 0000000..8fa6243 --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/adapter/CpuListAdapter.kt @@ -0,0 +1,32 @@ +package com.tools.device.devcheck.adapter + +import android.content.Context +import android.view.LayoutInflater +import android.view.ViewGroup +import androidx.recyclerview.widget.RecyclerView +import com.tools.device.devcheck.databinding.ItemListBinding + +class ListAdapter: RecyclerView.Adapter() { + private lateinit var context: Context + override fun onCreateViewHolder( + parent: ViewGroup, + viewType: Int + ): ListViewHolder { + context = parent.context + val binding= ItemListBinding.inflate(LayoutInflater.from(context), parent, false) + return ListViewHolder(binding) + } + + override fun onBindViewHolder( + holder: ListViewHolder, + position: Int + ) { + + } + + override fun getItemCount(): Int { + return 3 + } + + class ListViewHolder(val binding: ItemListBinding): RecyclerView.ViewHolder(binding.root) +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/adapter/ListAdapter.kt b/app/src/main/java/com/tools/device/devcheck/adapter/ListAdapter.kt new file mode 100644 index 0000000..36c157e --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/adapter/ListAdapter.kt @@ -0,0 +1,4 @@ +package com.tools.device.devcheck.adapter + +class ListAdapter { +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dashboard/AnalysisActivity.kt b/app/src/main/java/com/tools/device/devcheck/dashboard/AnalysisActivity.kt new file mode 100644 index 0000000..2e0e603 --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dashboard/AnalysisActivity.kt @@ -0,0 +1,21 @@ +package com.tools.device.devcheck.dashboard + +import android.os.Bundle +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import com.tools.device.devcheck.R + +class AnalysisActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContentView(R.layout.activity_analysis) + ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> + val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom) + insets + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dashboard/BlueToothActivity.kt b/app/src/main/java/com/tools/device/devcheck/dashboard/BlueToothActivity.kt new file mode 100644 index 0000000..ae5c382 --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dashboard/BlueToothActivity.kt @@ -0,0 +1,21 @@ +package com.tools.device.devcheck.dashboard + +import android.os.Bundle +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import com.tools.device.devcheck.R + +class BlueToothActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContentView(R.layout.activity_blue_tooth) + ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> + val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom) + insets + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dashboard/CpuStatusActivity.kt b/app/src/main/java/com/tools/device/devcheck/dashboard/CpuStatusActivity.kt new file mode 100644 index 0000000..32b41d9 --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dashboard/CpuStatusActivity.kt @@ -0,0 +1,21 @@ +package com.tools.device.devcheck.dashboard + +import android.os.Bundle +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import com.tools.device.devcheck.R + +class CpuStatusActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContentView(R.layout.activity_cpu_status) + ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> + val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom) + insets + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dashboard/HardWareFragment.kt b/app/src/main/java/com/tools/device/devcheck/dashboard/HardWareFragment.kt new file mode 100644 index 0000000..a395379 --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dashboard/HardWareFragment.kt @@ -0,0 +1,60 @@ +package com.tools.device.devcheck.dashboard + +import android.os.Bundle +import androidx.fragment.app.Fragment +import android.view.LayoutInflater +import android.view.View +import android.view.ViewGroup +import com.tools.device.devcheck.R + +// TODO: Rename parameter arguments, choose names that match +// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER +private const val ARG_PARAM1 = "param1" +private const val ARG_PARAM2 = "param2" + +/** + * A simple [Fragment] subclass. + * Use the [HardWareFragment.newInstance] factory method to + * create an instance of this fragment. + */ +class HardWareFragment : Fragment() { + // TODO: Rename and change types of parameters + private var param1: String? = null + private var param2: String? = null + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + arguments?.let { + param1 = it.getString(ARG_PARAM1) + param2 = it.getString(ARG_PARAM2) + } + } + + override fun onCreateView( + inflater: LayoutInflater, container: ViewGroup?, + savedInstanceState: Bundle? + ): View? { + // Inflate the layout for this fragment + return inflater.inflate(R.layout.fragment_hard_ware, container, false) + } + + companion object { + /** + * Use this factory method to create a new instance of + * this fragment using the provided parameters. + * + * @param param1 Parameter 1. + * @param param2 Parameter 2. + * @return A new instance of fragment HardWareFragment. + */ + // TODO: Rename and change types and number of parameters + @JvmStatic + fun newInstance(param1: String, param2: String) = + HardWareFragment().apply { + arguments = Bundle().apply { + putString(ARG_PARAM1, param1) + putString(ARG_PARAM2, param2) + } + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dashboard/TestActivity.kt b/app/src/main/java/com/tools/device/devcheck/dashboard/TestActivity.kt new file mode 100644 index 0000000..de78f9f --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dashboard/TestActivity.kt @@ -0,0 +1,64 @@ +package com.tools.device.devcheck.dashboard + +import android.content.Intent +import android.os.Bundle +import androidx.appcompat.app.AppCompatActivity +import com.tools.device.devcheck.R +import com.tools.device.devcheck.databinding.ActivityTextBinding +import com.tools.device.devcheck.databinding.ActivityToolsBinding + +class TextActivity : AppCompatActivity() { + private lateinit var binding: ActivityTextBinding + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + binding=ActivityTextBinding.inflate(layoutInflater) + setContentView(binding.root) + initView() + initClick() + } + + private fun initClick() { + binding.toolItem5.root.setOnClickListener { + intent=Intent(this, ColorsActivity::class.java) + startActivity(intent) + } + } + + private fun initView(){ + binding.toolItem1.ivIcon.setImageResource(R.drawable.flash) + binding.toolItem1.tvLabel.text=getString(R.string.flashlight) + binding.toolItem1.ivEnd.setImageResource(R.drawable.vector) + + binding.toolItem2.ivIcon.setImageResource(R.drawable.vibration) + binding.toolItem2.tvLabel.text=getString(R.string.vibration) + binding.toolItem2.ivEnd.setImageResource(R.drawable.vector) + + binding.toolItem3.ivIcon.setImageResource(R.drawable.button) + binding.toolItem3.tvLabel.text=getString(R.string.buttons) + binding.toolItem3.ivEnd.setImageResource(R.drawable.vector) + + binding.toolItem4.ivIcon.setImageResource(R.drawable.multi) + binding.toolItem4.tvLabel.text=getString(R.string.multitouch) + binding.toolItem4.ivEnd.setImageResource(R.drawable.vector) + + binding.toolItem5.ivIcon.setImageResource(R.drawable.display) + binding.toolItem5.tvLabel.text=getString(R.string.displays) + binding.toolItem5.ivEnd.setImageResource(R.drawable.vector) + + binding.toolItem6.ivIcon.setImageResource(R.drawable.back) + binding.toolItem6.tvLabel.text=getString(R.string.backlight) + binding.toolItem6.ivEnd.setImageResource(R.drawable.vector) + + binding.toolItem7.ivIcon.setImageResource(R.drawable.light) + binding.toolItem7.tvLabel.text=getString(R.string.light_sensor) + binding.toolItem7.ivEnd.setImageResource(R.drawable.vector) + + binding.toolItem8.ivIcon.setImageResource(R.drawable.proxi) + binding.toolItem8.tvLabel.text=getString(R.string.proximity) + binding.toolItem8.ivEnd.setImageResource(R.drawable.vector) + + binding.toolItem9.ivIcon.setImageResource(R.drawable.acceler) + binding.toolItem9.tvLabel.text=getString(R.string.accelerometer) + binding.toolItem9.ivEnd.setImageResource(R.drawable.vector) + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dashboard/TestOtherActivity.kt b/app/src/main/java/com/tools/device/devcheck/dashboard/TestOtherActivity.kt new file mode 100644 index 0000000..a1a6cbb --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dashboard/TestOtherActivity.kt @@ -0,0 +1,21 @@ +package com.tools.device.devcheck.dashboard + +import android.os.Bundle +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import com.tools.device.devcheck.R + +class TextOtherActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContentView(R.layout.activity_text_other) + ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> + val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom) + insets + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dashboard/ToolsActivity.kt b/app/src/main/java/com/tools/device/devcheck/dashboard/ToolsActivity.kt new file mode 100644 index 0000000..753fb05 --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dashboard/ToolsActivity.kt @@ -0,0 +1,21 @@ +package com.tools.device.devcheck.dashboard + +import android.os.Bundle +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import com.tools.device.devcheck.R + +class ToolsActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContentView(R.layout.activity_tools) + ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> + val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom) + insets + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dashboard/TouchActivity.kt b/app/src/main/java/com/tools/device/devcheck/dashboard/TouchActivity.kt new file mode 100644 index 0000000..d1bbe5a --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dashboard/TouchActivity.kt @@ -0,0 +1,21 @@ +package com.tools.device.devcheck.dashboard + +import android.os.Bundle +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import com.tools.device.devcheck.R + +class TouchActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContentView(R.layout.activity_touch) + ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets -> + val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) + v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom) + insets + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/tools/device/devcheck/dialog/CustomPopView.kt b/app/src/main/java/com/tools/device/devcheck/dialog/CustomPopView.kt new file mode 100644 index 0000000..b712674 --- /dev/null +++ b/app/src/main/java/com/tools/device/devcheck/dialog/CustomPopView.kt @@ -0,0 +1,4 @@ +package com.tools.device.devcheck.dialog + +class CustomPopView { +} \ No newline at end of file diff --git a/app/src/main/res/anim/popup_enter.xml b/app/src/main/res/anim/popup_enter.xml new file mode 100644 index 0000000..d05f36c --- /dev/null +++ b/app/src/main/res/anim/popup_enter.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/anim/popup_exit.xml b/app/src/main/res/anim/popup_exit.xml new file mode 100644 index 0000000..d05f36c --- /dev/null +++ b/app/src/main/res/anim/popup_exit.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/acceler.png b/app/src/main/res/drawable/acceler.png new file mode 100644 index 0000000..4b1c5a3 Binary files /dev/null and b/app/src/main/res/drawable/acceler.png differ diff --git a/app/src/main/res/drawable/back.png b/app/src/main/res/drawable/back.png new file mode 100644 index 0000000..b85bbf0 Binary files /dev/null and b/app/src/main/res/drawable/back.png differ diff --git a/app/src/main/res/drawable/big_icon_1.png b/app/src/main/res/drawable/big_icon_1.png new file mode 100644 index 0000000..d682869 Binary files /dev/null and b/app/src/main/res/drawable/big_icon_1.png differ diff --git a/app/src/main/res/drawable/big_icon_2.png b/app/src/main/res/drawable/big_icon_2.png new file mode 100644 index 0000000..a1496bd Binary files /dev/null and b/app/src/main/res/drawable/big_icon_2.png differ diff --git a/app/src/main/res/drawable/big_icon_3.png b/app/src/main/res/drawable/big_icon_3.png new file mode 100644 index 0000000..e646bde Binary files /dev/null and b/app/src/main/res/drawable/big_icon_3.png differ diff --git a/app/src/main/res/drawable/big_icon_4.png b/app/src/main/res/drawable/big_icon_4.png new file mode 100644 index 0000000..77ffe4a Binary files /dev/null and b/app/src/main/res/drawable/big_icon_4.png differ diff --git a/app/src/main/res/drawable/blue_tooth.png b/app/src/main/res/drawable/blue_tooth.png new file mode 100644 index 0000000..a5c58b6 Binary files /dev/null and b/app/src/main/res/drawable/blue_tooth.png differ diff --git a/app/src/main/res/drawable/button.png b/app/src/main/res/drawable/button.png new file mode 100644 index 0000000..115c669 Binary files /dev/null and b/app/src/main/res/drawable/button.png differ diff --git a/app/src/main/res/drawable/cpu.png b/app/src/main/res/drawable/cpu.png new file mode 100644 index 0000000..7ee2d97 Binary files /dev/null and b/app/src/main/res/drawable/cpu.png differ diff --git a/app/src/main/res/drawable/display.png b/app/src/main/res/drawable/display.png new file mode 100644 index 0000000..05e2add Binary files /dev/null and b/app/src/main/res/drawable/display.png differ diff --git a/app/src/main/res/drawable/edit_line.png b/app/src/main/res/drawable/edit_line.png new file mode 100644 index 0000000..b94e8a8 Binary files /dev/null and b/app/src/main/res/drawable/edit_line.png differ diff --git a/app/src/main/res/drawable/flash.png b/app/src/main/res/drawable/flash.png new file mode 100644 index 0000000..af585e1 Binary files /dev/null and b/app/src/main/res/drawable/flash.png differ diff --git a/app/src/main/res/drawable/go_back.png b/app/src/main/res/drawable/go_back.png new file mode 100644 index 0000000..9f3bc81 Binary files /dev/null and b/app/src/main/res/drawable/go_back.png differ diff --git a/app/src/main/res/drawable/go_on.png b/app/src/main/res/drawable/go_on.png new file mode 100644 index 0000000..9b6182d Binary files /dev/null and b/app/src/main/res/drawable/go_on.png differ diff --git a/app/src/main/res/drawable/hard_bg.xml b/app/src/main/res/drawable/hard_bg.xml new file mode 100644 index 0000000..a8b409b --- /dev/null +++ b/app/src/main/res/drawable/hard_bg.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/is_working_btn.xml b/app/src/main/res/drawable/is_working_btn.xml new file mode 100644 index 0000000..5115b71 --- /dev/null +++ b/app/src/main/res/drawable/is_working_btn.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/key.png b/app/src/main/res/drawable/key.png new file mode 100644 index 0000000..e4858c7 Binary files /dev/null and b/app/src/main/res/drawable/key.png differ diff --git a/app/src/main/res/drawable/light.png b/app/src/main/res/drawable/light.png new file mode 100644 index 0000000..c7626d8 Binary files /dev/null and b/app/src/main/res/drawable/light.png differ diff --git a/app/src/main/res/drawable/more_point.png b/app/src/main/res/drawable/more_point.png new file mode 100644 index 0000000..13e444c Binary files /dev/null and b/app/src/main/res/drawable/more_point.png differ diff --git a/app/src/main/res/drawable/multi.png b/app/src/main/res/drawable/multi.png new file mode 100644 index 0000000..859f58f Binary files /dev/null and b/app/src/main/res/drawable/multi.png differ diff --git a/app/src/main/res/drawable/open_pop.png b/app/src/main/res/drawable/open_pop.png new file mode 100644 index 0000000..514f488 Binary files /dev/null and b/app/src/main/res/drawable/open_pop.png differ diff --git a/app/src/main/res/drawable/popup_background.xml b/app/src/main/res/drawable/popup_background.xml new file mode 100644 index 0000000..3ef8998 --- /dev/null +++ b/app/src/main/res/drawable/popup_background.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/progress_bg.xml b/app/src/main/res/drawable/progress_bg.xml new file mode 100644 index 0000000..866ea91 --- /dev/null +++ b/app/src/main/res/drawable/progress_bg.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/progress_oval.xml b/app/src/main/res/drawable/progress_oval.xml new file mode 100644 index 0000000..c28ebfd --- /dev/null +++ b/app/src/main/res/drawable/progress_oval.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/proxi.png b/app/src/main/res/drawable/proxi.png new file mode 100644 index 0000000..7000e25 Binary files /dev/null and b/app/src/main/res/drawable/proxi.png differ diff --git a/app/src/main/res/drawable/radius1.png b/app/src/main/res/drawable/radius1.png new file mode 100644 index 0000000..a713373 Binary files /dev/null and b/app/src/main/res/drawable/radius1.png differ diff --git a/app/src/main/res/drawable/radius2.png b/app/src/main/res/drawable/radius2.png new file mode 100644 index 0000000..97b1159 Binary files /dev/null and b/app/src/main/res/drawable/radius2.png differ diff --git a/app/src/main/res/drawable/radius3.png b/app/src/main/res/drawable/radius3.png new file mode 100644 index 0000000..98bbb6b Binary files /dev/null and b/app/src/main/res/drawable/radius3.png differ diff --git a/app/src/main/res/drawable/top_radius_bg.xml b/app/src/main/res/drawable/top_radius_bg.xml new file mode 100644 index 0000000..71d341c --- /dev/null +++ b/app/src/main/res/drawable/top_radius_bg.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/vector.png b/app/src/main/res/drawable/vector.png new file mode 100644 index 0000000..2f15ada Binary files /dev/null and b/app/src/main/res/drawable/vector.png differ diff --git a/app/src/main/res/drawable/vector_no.png b/app/src/main/res/drawable/vector_no.png new file mode 100644 index 0000000..8e544c4 Binary files /dev/null and b/app/src/main/res/drawable/vector_no.png differ diff --git a/app/src/main/res/drawable/vector_ok.png b/app/src/main/res/drawable/vector_ok.png new file mode 100644 index 0000000..05a0bf2 Binary files /dev/null and b/app/src/main/res/drawable/vector_ok.png differ diff --git a/app/src/main/res/drawable/vibration.png b/app/src/main/res/drawable/vibration.png new file mode 100644 index 0000000..f7e5739 Binary files /dev/null and b/app/src/main/res/drawable/vibration.png differ diff --git a/app/src/main/res/layout/activity_analysis.xml b/app/src/main/res/layout/activity_analysis.xml new file mode 100644 index 0000000..93b9710 --- /dev/null +++ b/app/src/main/res/layout/activity_analysis.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_blue_tooth.xml b/app/src/main/res/layout/activity_blue_tooth.xml new file mode 100644 index 0000000..6bd4831 --- /dev/null +++ b/app/src/main/res/layout/activity_blue_tooth.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_cpu_status.xml b/app/src/main/res/layout/activity_cpu_status.xml new file mode 100644 index 0000000..5d51c69 --- /dev/null +++ b/app/src/main/res/layout/activity_cpu_status.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_test.xml b/app/src/main/res/layout/activity_test.xml new file mode 100644 index 0000000..f89724c --- /dev/null +++ b/app/src/main/res/layout/activity_test.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_test_other.xml b/app/src/main/res/layout/activity_test_other.xml new file mode 100644 index 0000000..a662f46 --- /dev/null +++ b/app/src/main/res/layout/activity_test_other.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_tools.xml b/app/src/main/res/layout/activity_tools.xml new file mode 100644 index 0000000..b849e78 --- /dev/null +++ b/app/src/main/res/layout/activity_tools.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_touch.xml b/app/src/main/res/layout/activity_touch.xml new file mode 100644 index 0000000..c460925 --- /dev/null +++ b/app/src/main/res/layout/activity_touch.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/color_page_1.xml b/app/src/main/res/layout/color_page_1.xml new file mode 100644 index 0000000..cdc89f2 --- /dev/null +++ b/app/src/main/res/layout/color_page_1.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/color_page_2.xml b/app/src/main/res/layout/color_page_2.xml new file mode 100644 index 0000000..63d34f2 --- /dev/null +++ b/app/src/main/res/layout/color_page_2.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/common_check_style.xml b/app/src/main/res/layout/common_check_style.xml new file mode 100644 index 0000000..cdc89f2 --- /dev/null +++ b/app/src/main/res/layout/common_check_style.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/common_test_item.xml b/app/src/main/res/layout/common_test_item.xml new file mode 100644 index 0000000..b2bef10 --- /dev/null +++ b/app/src/main/res/layout/common_test_item.xml @@ -0,0 +1,30 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/common_text_style.xml b/app/src/main/res/layout/common_text_style.xml new file mode 100644 index 0000000..cdc89f2 --- /dev/null +++ b/app/src/main/res/layout/common_text_style.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/common_tool_item.xml b/app/src/main/res/layout/common_tool_item.xml new file mode 100644 index 0000000..b2bef10 --- /dev/null +++ b/app/src/main/res/layout/common_tool_item.xml @@ -0,0 +1,30 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_hard_ware.xml b/app/src/main/res/layout/fragment_hard_ware.xml new file mode 100644 index 0000000..9d474bb --- /dev/null +++ b/app/src/main/res/layout/fragment_hard_ware.xml @@ -0,0 +1,14 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/item_list.xml b/app/src/main/res/layout/item_list.xml new file mode 100644 index 0000000..da7e7a2 --- /dev/null +++ b/app/src/main/res/layout/item_list.xml @@ -0,0 +1,25 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/item_list_cpu.xml b/app/src/main/res/layout/item_list_cpu.xml new file mode 100644 index 0000000..8dd9fc5 --- /dev/null +++ b/app/src/main/res/layout/item_list_cpu.xml @@ -0,0 +1,27 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/popup_layout.xml b/app/src/main/res/layout/popup_layout.xml new file mode 100644 index 0000000..cdc89f2 --- /dev/null +++ b/app/src/main/res/layout/popup_layout.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml deleted file mode 100644 index 3d9df9a..0000000 --- a/app/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file