- 创建带图案打开意图过滤器的 PatternLockActivity - 构建图案锁布局和点背景样式 - 添加图案锁颜色和字符串资源 - 更新构建计数到 11 注意:图案锁 UI 已创建但尚未集成
26 lines
800 B
XML
26 lines
800 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@android:color/black">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
android:gravity="center"
|
|
app:titleTextColor="@android:color/white"
|
|
app:subtitleTextColor="@android:color/white"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#FFFFFF"/>
|
|
|
|
</LinearLayout>
|