undo process change. (not a simple change, sharedpreferences don't work)

This commit is contained in:
Matthew Wong 2015-11-07 10:50:42 -05:00
parent d68c06a4a6
commit 72e32c95f6
2 changed files with 8 additions and 3 deletions

View file

@ -46,8 +46,7 @@
</activity>
<service android:name=".autofill.AutofillService"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
android:process=":background">
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>

View file

@ -230,7 +230,13 @@ public class AutofillService extends AccessibilityService {
private void showDialog(final String appName) {
AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.Theme_AppCompat_Dialog);
builder.setNegativeButton(R.string.dialog_cancel, null);
builder.setNegativeButton(R.string.dialog_cancel, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface d, int which) {
dialog.dismiss();
dialog = null;
}
});
builder.setPositiveButton(R.string.autofill_fill, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {