Bug: 210026562 Test: manual Test: atest Change-Id: I4d5ff6b10d6bfd2fe6b3de1849d00a9d084bf269
71 lines
2.5 KiB
Java
71 lines
2.5 KiB
Java
/*
|
|
* Copyright (C) 2019 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.accessibility;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.ResolveInfo;
|
|
import android.provider.Settings;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.preference.Preference;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.BasePreferenceController;
|
|
|
|
import java.util.List;
|
|
|
|
public class LiveCaptionPreferenceController extends BasePreferenceController {
|
|
|
|
@VisibleForTesting
|
|
static final Intent LIVE_CAPTION_INTENT = new Intent(
|
|
"com.android.settings.action.live_caption");
|
|
|
|
private final PackageManager mPackageManager;
|
|
|
|
public LiveCaptionPreferenceController(Context context, String preferenceKey) {
|
|
super(context, preferenceKey);
|
|
mPackageManager = context.getPackageManager();
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
final List<ResolveInfo> resolved =
|
|
mPackageManager.queryIntentActivities(LIVE_CAPTION_INTENT, 0 /* flags */);
|
|
return resolved != null && !resolved.isEmpty()
|
|
? AVAILABLE
|
|
: UNSUPPORTED_ON_DEVICE;
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
super.updateState(preference);
|
|
preference.setIntent(LIVE_CAPTION_INTENT);
|
|
boolean enabled = Settings.Secure.getInt(
|
|
mContext.getContentResolver(),
|
|
Settings.Secure.ODI_CAPTIONS_ENABLED, AccessibilityUtil.State.OFF)
|
|
== AccessibilityUtil.State.ON;
|
|
CharSequence serviceState = mContext.getText(enabled
|
|
? R.string.live_caption_enabled : R.string.live_caption_disabled);
|
|
|
|
preference.setSummary(
|
|
mContext.getString(
|
|
R.string.preference_summary_default_combination,
|
|
serviceState, mContext.getText(R.string.live_caption_summary)));
|
|
}
|
|
} |