1 /* 2 * Copyright (C) 2014 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.nfc.cardemulation; 18 19 import android.content.DialogInterface; 20 import android.content.Intent; 21 import android.os.Bundle; 22 import android.provider.Settings; 23 import com.android.internal.R; 24 25 import com.android.internal.app.AlertActivity; 26 import com.android.internal.app.AlertController; 27 28 public class DefaultRemovedActivity extends AlertActivity implements 29 DialogInterface.OnClickListener { 30 @Override onCreate(Bundle savedInstanceState)31 protected void onCreate(Bundle savedInstanceState) { 32 setTheme(R.style.Theme_DeviceDefault_Light_Dialog_Alert); 33 super.onCreate(savedInstanceState); 34 35 AlertController.AlertParams ap = mAlertParams; 36 37 ap.mMessage = getString(com.android.nfc.R.string.default_pay_app_removed); 38 ap.mNegativeButtonText = getString(R.string.no); 39 ap.mPositiveButtonText = getString(R.string.yes); 40 ap.mPositiveButtonListener = this; 41 setupAlert(); 42 } 43 44 @Override onClick(DialogInterface dialog, int which)45 public void onClick(DialogInterface dialog, int which) { 46 // Launch into Settings 47 Intent intent = new Intent(Settings.ACTION_NFC_PAYMENT_SETTINGS); 48 startActivity(intent); 49 } 50 }