19 lines
781 B
XML
19 lines
781 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
tools:context=".ui.PatternLockFragment">
|
|
|
|
<com.andrognito.patternlockview.PatternLockView
|
|
android:id="@+id/lock_pattern_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
app:aspectRatioEnabled="true"
|
|
app:normalStateColor="@color/colorPrimary"
|
|
app:correctStateColor="@color/colorPrimaryDark"
|
|
app:wrongStateColor="@color/colorAccent"/>
|
|
|
|
</FrameLayout> |