use of com.android.internal.app.AssistUtils in project android_packages_apps_Settings by DirtyUnicorns.
the class DefaultAssistPicker method onAttach.
@Override
public void onAttach(Context context) {
super.onAttach(context);
mAssistUtils = new AssistUtils(context);
}
use of com.android.internal.app.AssistUtils in project android_packages_apps_Settings by DirtyUnicorns.
the class DefaultVoiceInputPicker method onAttach.
@Override
public void onAttach(Context context) {
super.onAttach(context);
mAssistUtils = new AssistUtils(context);
mHelper = new VoiceInputHelper(context);
mHelper.buildUi();
final ComponentName assist = getCurrentAssist();
if (isCurrentAssistVoiceService(assist, getCurrentService(mHelper))) {
mAssistRestrict = assist.flattenToShortString();
}
}
use of com.android.internal.app.AssistUtils in project android_packages_apps_Settings by crdroidandroid.
the class DefaultAssistPicker method onAttach.
@Override
public void onAttach(Context context) {
super.onAttach(context);
mAssistUtils = new AssistUtils(context);
}
use of com.android.internal.app.AssistUtils in project android_packages_apps_Settings by SudaMod.
the class DefaultAssistPicker method onAttach.
@Override
public void onAttach(Context context) {
super.onAttach(context);
mAssistUtils = new AssistUtils(context);
}
use of com.android.internal.app.AssistUtils in project android_packages_apps_Settings by SudaMod.
the class DefaultVoiceInputPicker method onAttach.
@Override
public void onAttach(Context context) {
super.onAttach(context);
mAssistUtils = new AssistUtils(context);
mHelper = new VoiceInputHelper(context);
mHelper.buildUi();
final ComponentName assist = getCurrentAssist();
if (isCurrentAssistVoiceService(assist, getCurrentService(mHelper))) {
mAssistRestrict = assist.flattenToShortString();
}
}
Aggregations