add systemUI
This commit is contained in:
parent
d1bf601e74
commit
bea38d9d03
@ -0,0 +1,33 @@
|
|||||||
|
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
|
||||||
|
|
||||||
|
class SystemShowFragment : Fragment() {
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreateView(
|
||||||
|
inflater: LayoutInflater, container: ViewGroup?,
|
||||||
|
savedInstanceState: Bundle?
|
||||||
|
): View? {
|
||||||
|
return inflater.inflate(R.layout.fragment_system_show, container, false)
|
||||||
|
}
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
@JvmStatic
|
||||||
|
fun newInstance() =
|
||||||
|
SystemShowFragment().apply {
|
||||||
|
arguments = Bundle().apply {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -8,6 +8,7 @@ import com.google.android.material.tabs.TabLayoutMediator
|
|||||||
import com.tools.device.devcheck.base.BaseActivity
|
import com.tools.device.devcheck.base.BaseActivity
|
||||||
import com.tools.device.devcheck.R
|
import com.tools.device.devcheck.R
|
||||||
import com.tools.device.devcheck.dashboard.DashboardFragment
|
import com.tools.device.devcheck.dashboard.DashboardFragment
|
||||||
|
import com.tools.device.devcheck.dashboard.SystemShowFragment
|
||||||
import com.tools.device.devcheck.databinding.ActivityMainBinding
|
import com.tools.device.devcheck.databinding.ActivityMainBinding
|
||||||
|
|
||||||
class MainActivity : BaseActivity<ActivityMainBinding>() {
|
class MainActivity : BaseActivity<ActivityMainBinding>() {
|
||||||
@ -24,7 +25,7 @@ class MainActivity : BaseActivity<ActivityMainBinding>() {
|
|||||||
this@MainActivity, listOf(
|
this@MainActivity, listOf(
|
||||||
DashboardFragment.newInstance(),
|
DashboardFragment.newInstance(),
|
||||||
DashboardFragment.newInstance(),
|
DashboardFragment.newInstance(),
|
||||||
DashboardFragment.newInstance(),
|
SystemShowFragment.newInstance(),
|
||||||
DashboardFragment.newInstance(),
|
DashboardFragment.newInstance(),
|
||||||
DashboardFragment.newInstance(),
|
DashboardFragment.newInstance(),
|
||||||
DashboardFragment.newInstance(),
|
DashboardFragment.newInstance(),
|
||||||
|
|||||||
993
app/src/main/res/layout/fragment_system_show.xml
Normal file
993
app/src/main/res/layout/fragment_system_show.xml
Normal file
@ -0,0 +1,993 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="@color/background_color"
|
||||||
|
tools:context=".dashboard.DashboardFragment">
|
||||||
|
|
||||||
|
|
||||||
|
<androidx.core.widget.NestedScrollView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:paddingHorizontal="@dimen/dashboard_fragment_padding_horizontal"
|
||||||
|
android:paddingVertical="@dimen/dashboard_fragment_padding_vertical">
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="15dp"
|
||||||
|
android:visibility="visible"
|
||||||
|
android:background="@drawable/dashboard_model_background"
|
||||||
|
>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/titleDev"
|
||||||
|
style="@style/TextBig"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="设备"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:scaleType="fitXY"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/phone_Name"
|
||||||
|
style="@style/TextBig"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="OPPO A53 5G"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="50dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textTitle1"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="型号"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textDev1"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textTitle2"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="产品"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textDev2"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textTitle3"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="设备"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textDev3"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textTitle4"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="主板"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textDev4"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textTitle5"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="制造商"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textDev5"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textTitle6"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="基带"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/textDev6"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:padding="15dp"
|
||||||
|
android:visibility="visible"
|
||||||
|
android:background="@drawable/dashboard_model_background"
|
||||||
|
>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/titleSystem"
|
||||||
|
style="@style/TextBig"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="操作系统"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
<View
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:layout_height="1dp"/>
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:src="@drawable/module_oval"
|
||||||
|
android:layout_gravity="center_vertical"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="90dp"
|
||||||
|
android:scaleType="fitXY"
|
||||||
|
android:layout_height="90dp"
|
||||||
|
android:src="@mipmap/ic_launcher"
|
||||||
|
android:layout_marginEnd="60dp"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/androidName"
|
||||||
|
style="@style/TextBig"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="Android 12(Snow Cone)"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="50dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle1"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="Android版本"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev1"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle2"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="API"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev2"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle3"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="安全修补级别"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev3"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle4"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="版本号"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev4"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle5"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="指纹"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev5"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle6"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="编译时间"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev6"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle7"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="首批发行"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev7"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle8"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="架构"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev8"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle9"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="指令集架构"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev9"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle10"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="Treble"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev10"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle11"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="Root权限"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev11"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle12"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="Google Play 服务"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev12"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle13"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="Toybox"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev13"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle14"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="Java VM"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev14"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle15"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="SSL 版本"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev15"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle16"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="语言"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev16"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle17"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="时区"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev17"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle18"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="USB 调试"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev18"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemTitle19"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="内核"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/systemDev19"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="15dp"
|
||||||
|
android:visibility="gone"
|
||||||
|
android:background="@drawable/dashboard_model_background"
|
||||||
|
>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/titleId"
|
||||||
|
style="@style/TextBig"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="标识符"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/idTitle1"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="Google 服务框架 ID"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/idDev1"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/idTitle2"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="设备 ID"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/idDev2"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/idTitle3"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="Google Play Services version"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/idDev3"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="15dp"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:visibility="visible"
|
||||||
|
android:background="@drawable/dashboard_model_background"
|
||||||
|
>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/titleD"
|
||||||
|
style="@style/TextBig"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="DRM"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
style="@style/TextModuleTitle"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="30dp"
|
||||||
|
android:text="ClearKey CDM"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dTitle1"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="供应商"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent" />
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dDev1"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dTitle2"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="版本"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent" />
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dDev2"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
style="@style/TextModuleTitle"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="30dp"
|
||||||
|
android:text="Widevine"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dTitle4"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="供应商"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dDev4"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dTitle5"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="版本"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dDev5"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dTitle6"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="算法"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dDev6"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dTitle3"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="设备ID"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dDev7"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dTitle8"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="安全级别"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dDev8"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:layout_marginTop="15dp"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dTitle9"
|
||||||
|
android:layout_width="150dp"
|
||||||
|
android:text="最高 HDCP级别"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:src="@mipmap/ic_launcher"/>
|
||||||
|
<com.google.android.material.textview.MaterialTextView
|
||||||
|
android:id="@+id/dDev9"
|
||||||
|
style="@style/TextContent"
|
||||||
|
android:layout_marginStart="20dp"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/apps"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
tools:ignore="RelativeOverlap" />
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
||||||
|
</androidx.core.widget.NestedScrollView>
|
||||||
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||||||
@ -52,9 +52,6 @@
|
|||||||
<string name="frame_rate">Frame rate</string>
|
<string name="frame_rate">Frame rate</string>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<string name="ram">RAM</string>
|
<string name="ram">RAM</string>
|
||||||
<string name="storage">Storage</string>
|
<string name="storage">Storage</string>
|
||||||
|
|
||||||
@ -68,5 +65,4 @@
|
|||||||
<string name="settings">Settings</string>
|
<string name="settings">Settings</string>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
Loading…
Reference in New Issue
Block a user