118 lines
3.8 KiB
Java
118 lines
3.8 KiB
Java
/*
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.nfc;
|
|
|
|
import android.app.settings.SettingsEnums;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.UserInfo;
|
|
import android.os.Bundle;
|
|
import android.os.UserHandle;
|
|
import android.os.UserManager;
|
|
import android.provider.SearchIndexableResource;
|
|
import android.view.Menu;
|
|
import android.view.MenuInflater;
|
|
import android.view.MenuItem;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.dashboard.DashboardFragment;
|
|
import com.android.settings.search.BaseSearchIndexProvider;
|
|
import com.android.settingslib.search.SearchIndexable;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
|
|
@SearchIndexable
|
|
public class PaymentSettings extends DashboardFragment {
|
|
public static final String TAG = "PaymentSettings";
|
|
|
|
private PaymentBackend mPaymentBackend;
|
|
|
|
@Override
|
|
protected String getLogTag() {
|
|
return TAG;
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return SettingsEnums.NFC_PAYMENT;
|
|
}
|
|
|
|
@Override
|
|
protected int getPreferenceScreenResId() {
|
|
return R.xml.nfc_payment_settings;
|
|
}
|
|
|
|
@Override
|
|
public void onAttach(Context context) {
|
|
super.onAttach(context);
|
|
mPaymentBackend = new PaymentBackend(getActivity());
|
|
setHasOptionsMenu(true);
|
|
|
|
use(NfcPaymentPreferenceController.class).setPaymentBackend(mPaymentBackend);
|
|
use(NfcForegroundPreferenceController.class).setPaymentBackend(mPaymentBackend);
|
|
}
|
|
|
|
@Override
|
|
public void onViewCreated(View view, Bundle savedInstanceState) {
|
|
super.onViewCreated(view, savedInstanceState);
|
|
|
|
View emptyView = getActivity().getLayoutInflater().inflate(
|
|
R.layout.nfc_payment_empty, null, false);
|
|
((ViewGroup) view.findViewById(android.R.id.list_container)).addView(emptyView);
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
mPaymentBackend.onResume();
|
|
}
|
|
|
|
@Override
|
|
public void onPause() {
|
|
super.onPause();
|
|
mPaymentBackend.onPause();
|
|
}
|
|
|
|
@Override
|
|
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
|
super.onCreateOptionsMenu(menu, inflater);
|
|
MenuItem menuItem = menu.add(R.string.nfc_payment_how_it_works);
|
|
Intent howItWorksIntent = new Intent(getActivity(), HowItWorks.class);
|
|
menuItem.setIntent(howItWorksIntent);
|
|
menuItem.setShowAsActionFlags(MenuItem.SHOW_AS_ACTION_NEVER);
|
|
}
|
|
|
|
public static final SearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
|
|
new BaseSearchIndexProvider(R.xml.nfc_payment_settings) {
|
|
|
|
@Override
|
|
protected boolean isPageSearchEnabled(Context context) {
|
|
final UserManager userManager = context.getSystemService(UserManager.class);
|
|
final UserInfo myUserInfo = userManager.getUserInfo(UserHandle.myUserId());
|
|
if (myUserInfo.isGuest()) {
|
|
return false;
|
|
}
|
|
final PackageManager pm = context.getPackageManager();
|
|
return pm.hasSystemFeature(PackageManager.FEATURE_NFC);
|
|
}
|
|
};
|
|
} |