Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9c0e8f0 authored by Selim Cinek's avatar Selim Cinek
Browse files

Added dissapear animation to pattern and pin input

Bug: 18232017
Change-Id: I062d55b0870ccaad6093b672f5076c3f80c10f94
parent 72e32fd5
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -25,14 +25,17 @@
    android:id="@+id/keyguard_host_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">
    android:orientation="horizontal"
    android:clipChildren="false"
    android:clipToPadding="false">

    <com.android.keyguard.MultiPaneChallengeLayout
        android:id="@+id/multi_pane_challenge"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:clipChildren="false">
        android:clipChildren="false"
        android:clipToPadding="false">

        <include layout="@layout/keyguard_widget_remove_drop_target"
            android:id="@+id/keyguard_widget_pager_delete_target"
+4 −1
Original line number Diff line number Diff line
@@ -26,13 +26,16 @@
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:clipChildren="false"
    android:clipToPadding="false"
    android:orientation="vertical">

    <com.android.keyguard.SlidingChallengeLayout
        android:id="@+id/sliding_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipChildren="false">
        android:clipChildren="false"
        android:clipToPadding="false">

        <FrameLayout
            android:layout_width="match_parent"
+4 −1
Original line number Diff line number Diff line
@@ -25,13 +25,16 @@
    android:id="@+id/keyguard_host_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">
    android:orientation="horizontal"
    android:clipChildren="false"
    android:clipToPadding="false">

    <com.android.keyguard.MultiPaneChallengeLayout
        android:id="@+id/multi_pane_challenge"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipChildren="false"
        android:clipToPadding="false"
        android:orientation="vertical">

        <include layout="@layout/keyguard_widget_remove_drop_target"
+3 −1
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/transparent"
    android:clipChildren="false"
    android:clipToPadding="false"
    android:fitsSystemWindows="true">

    <include
+13 −3
Original line number Diff line number Diff line
@@ -27,6 +27,8 @@
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipChildren="false"
    android:clipToPadding="false"
    androidprv:layout_maxWidth="@dimen/keyguard_security_width"
    androidprv:layout_maxHeight="@dimen/keyguard_security_height"
    android:gravity="center_horizontal"
@@ -34,13 +36,17 @@

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        android:layout_height="match_parent"
        android:clipChildren="false"
        android:clipToPadding="false">

        <LinearLayout
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:orientation="vertical"
            android:layout_gravity="center_horizontal|bottom">
            android:layout_gravity="center_horizontal|bottom"
            android:clipChildren="false"
            android:clipToPadding="false">

            <include layout="@layout/keyguard_message_area"
                android:layout_width="match_parent"
@@ -52,6 +58,8 @@
             android:layout_width="match_parent"
             android:layout_height="0dp"
             android:layout_weight="1"
             android:clipChildren="false"
             android:clipToPadding="false"
             >
            <com.android.internal.widget.LockPatternView
                android:id="@+id/lockPatternView"
@@ -63,7 +71,9 @@
                android:layout_marginStart="8dip"
                android:layout_gravity="center_horizontal"
                android:gravity="center"
                android:contentDescription="@string/keyguard_accessibility_pattern_area" />
                android:contentDescription="@string/keyguard_accessibility_pattern_area"
                android:clipChildren="false"
                android:clipToPadding="false" />
          </FrameLayout>
          <include layout="@layout/keyguard_eca"
              android:id="@+id/keyguard_selector_fade_container"
Loading