The 3 main categories are: - Panel Opened - Panel Closed - Panel Slice interaction There are 3 close events: - See more button - Done button - Clicking outside the panel Slice interactions will log the Uri of the Slice and the ActionType, such as Toggle, Slider, Content (intent). Change-Id: Iecad948f39f50dd12ae1bcb23a5d523e0df8bb98 Fixes: 117804231 Test: robotests
59 lines
1.7 KiB
Java
59 lines
1.7 KiB
Java
package com.android.settings.panel;
|
|
|
|
import android.app.settings.SettingsEnums;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.net.Uri;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.SubSettings;
|
|
import com.android.settings.connecteddevice.AdvancedConnectedDeviceDashboardFragment;
|
|
import com.android.settings.slices.CustomSliceRegistry;
|
|
import com.android.settings.slices.SliceBuilderUtils;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class NfcPanel implements PanelContent {
|
|
|
|
private final Context mContext;
|
|
|
|
public static NfcPanel create(Context context) {
|
|
return new NfcPanel(context);
|
|
}
|
|
|
|
private NfcPanel(Context context) {
|
|
mContext = context.getApplicationContext();
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getTitle() {
|
|
return mContext.getText(R.string.nfc_quick_toggle_title);
|
|
}
|
|
|
|
@Override
|
|
public List<Uri> getSlices() {
|
|
final List<Uri> uris = new ArrayList<>();
|
|
uris.add(CustomSliceRegistry.NFC_SLICE_URI);
|
|
return uris;
|
|
}
|
|
|
|
@Override
|
|
public Intent getSeeMoreIntent() {
|
|
final String screenTitle =
|
|
mContext.getText(R.string.connected_device_connections_title).toString();
|
|
Intent intent = SliceBuilderUtils.buildSearchResultPageIntent(mContext,
|
|
AdvancedConnectedDeviceDashboardFragment.class.getName(),
|
|
null /* key */,
|
|
screenTitle,
|
|
SettingsEnums.SETTINGS_CONNECTED_DEVICE_CATEGORY);
|
|
intent.setClassName(mContext.getPackageName(), SubSettings.class.getName());
|
|
return intent;
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return SettingsEnums.PANEL_NFC;
|
|
}
|
|
}
|