aboutsummaryrefslogtreecommitdiff
path: root/input
diff options
context:
space:
mode:
authorDouglas Sigelbaum <sigelbaum@google.com>2017-06-16 11:44:18 -0700
committerDouglas Sigelbaum <sigelbaum@google.com>2017-07-10 14:48:41 +0000
commitabc564e17e6c244a5841bd740162fd75dbf5d6ae (patch)
treee896be02c5d416e6e46cd498c7853612029a6057 /input
parentf5cc7e9ebc6331e5692f8b794bf7b7b6feebddf4 (diff)
downloadandroid-abc564e17e6c244a5841bd740162fd75dbf5d6ae.tar.gz
Autofill sample: use AppCompatActivity for AuthActivity.
Bug: 38182790 Test: manual Change-Id: Ie0133dc9ca1386d08296e9f2e4be653665df3900
Diffstat (limited to 'input')
-rw-r--r--input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/AuthActivity.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/AuthActivity.java b/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/AuthActivity.java
index c365cc3c..c6615fff 100644
--- a/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/AuthActivity.java
+++ b/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/AuthActivity.java
@@ -25,6 +25,7 @@ import android.os.Bundle;
import android.service.autofill.Dataset;
import android.service.autofill.FillResponse;
import android.support.annotation.Nullable;
+import android.support.v7.app.AppCompatActivity;
import android.text.Editable;
import android.util.Log;
import android.view.View;
@@ -50,7 +51,7 @@ import static com.example.android.autofillframework.CommonUtil.TAG;
* It is launched when an Autofill Response or specific Dataset within the Response requires
* authentication to access. It bundles the result in an Intent.
*/
-public class AuthActivity extends Activity {
+public class AuthActivity extends AppCompatActivity {
// Unique id for dataset intents.
private static int sDatasetPendingIntentId = 0;