Give more space between the PIN code and the upper menu in the security settings menu

feat_androidx_migration
dtvv 2018-10-05 03:14:47 -05:00
parent 96feaf31cd
commit 9fa7ddf178
1 changed files with 9 additions and 6 deletions

View File

@ -1,17 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
<RelativeLayout
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="match_parent">
<TextView
android:id="@+id/tvPatternText"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:layout_marginTop="15dp"/>
<com.andrognito.patternlockview.PatternLockView
android:id="@+id/patternLockView"
android:layout_width="280dp"
android:layout_height="280dp"/>
</android.support.constraint.ConstraintLayout>
android:layout_height="280dp"
android:layout_marginTop="10dp"
android:layout_below="@+id/tvPatternText"/>
</RelativeLayout>