Merge commit '36a1bbe89025341987df0e380982cfbb4d09fe30' into HEAD
This commit is contained in:
@@ -1,88 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2006 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;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.widget.EditText;
|
||||
import android.widget.Button;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.text.TextUtils;
|
||||
import android.text.Spannable;
|
||||
import android.text.Selection;
|
||||
import android.net.Uri;
|
||||
|
||||
/**
|
||||
* A simple activity that provides a UI for sending intents
|
||||
*/
|
||||
public class DebugIntentSender extends Activity {
|
||||
private EditText mIntentField;
|
||||
private EditText mDataField;
|
||||
private EditText mAccountField;
|
||||
private EditText mResourceField;
|
||||
private Button mSendBroadcastButton;
|
||||
private Button mStartActivityButton;
|
||||
private View.OnClickListener mClicked = new View.OnClickListener() {
|
||||
public void onClick(View v) {
|
||||
if ((v == mSendBroadcastButton) ||
|
||||
(v == mStartActivityButton)) {
|
||||
String intentAction = mIntentField.getText().toString();
|
||||
String intentData = mDataField.getText().toString();
|
||||
String account = mAccountField.getText().toString();
|
||||
String resource = mResourceField.getText().toString();
|
||||
|
||||
Intent intent = new Intent(intentAction);
|
||||
if (!TextUtils.isEmpty(intentData)) {
|
||||
intent.setData(Uri.parse(intentData));
|
||||
}
|
||||
intent.putExtra("account", account);
|
||||
intent.putExtra("resource", resource);
|
||||
if (v == mSendBroadcastButton) {
|
||||
sendBroadcast(intent);
|
||||
} else {
|
||||
startActivity(intent);
|
||||
}
|
||||
|
||||
setResult(RESULT_OK);
|
||||
finish();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle icicle) {
|
||||
super.onCreate(icicle);
|
||||
setContentView(R.layout.intent_sender);
|
||||
|
||||
mIntentField = (EditText) findViewById(R.id.intent);
|
||||
mIntentField.setText(Intent.ACTION_SYNC);
|
||||
Selection.selectAll((Spannable) mIntentField.getText());
|
||||
|
||||
mDataField = (EditText) findViewById(R.id.data);
|
||||
mDataField.setBackgroundResource(android.R.drawable.editbox_background);
|
||||
|
||||
mAccountField = (EditText) findViewById(R.id.account);
|
||||
mResourceField = (EditText) findViewById(R.id.resource);
|
||||
|
||||
mSendBroadcastButton = (Button) findViewById(R.id.sendbroadcast);
|
||||
mSendBroadcastButton.setOnClickListener(mClicked);
|
||||
|
||||
mStartActivityButton = (Button) findViewById(R.id.startactivity);
|
||||
mStartActivityButton.setOnClickListener(mClicked);
|
||||
}
|
||||
}
|
@@ -61,8 +61,8 @@ import android.widget.TextView;
|
||||
|
||||
import com.android.internal.util.ArrayUtils;
|
||||
import com.android.settings.accessibility.AccessibilitySettings;
|
||||
import com.android.settings.accessibility.CaptionPropertiesFragment;
|
||||
import com.android.settings.accessibility.ToggleAccessibilityServicePreferenceFragment;
|
||||
import com.android.settings.accessibility.ToggleCaptioningPreferenceFragment;
|
||||
import com.android.settings.accounts.AccountSyncSettings;
|
||||
import com.android.settings.accounts.AuthenticatorHelper;
|
||||
import com.android.settings.accounts.ManageAccountsSettings;
|
||||
@@ -326,13 +326,12 @@ public class Settings extends PreferenceActivity
|
||||
ManageApplications.class.getName(),
|
||||
ProcessStatsUi.class.getName(),
|
||||
NotificationStation.class.getName(),
|
||||
AppOpsSummary.class.getName(),
|
||||
LocationSettings.class.getName(),
|
||||
SecuritySettings.class.getName(),
|
||||
PrivacySettings.class.getName(),
|
||||
DeviceAdminSettings.class.getName(),
|
||||
AccessibilitySettings.class.getName(),
|
||||
ToggleCaptioningPreferenceFragment.class.getName(),
|
||||
CaptionPropertiesFragment.class.getName(),
|
||||
TextToSpeechSettings.class.getName(),
|
||||
Memory.class.getName(),
|
||||
DevelopmentSettings.class.getName(),
|
||||
@@ -1081,7 +1080,15 @@ public class Settings extends PreferenceActivity
|
||||
public static class DeviceInfoSettingsActivity extends Settings { /* empty */ }
|
||||
public static class ApplicationSettingsActivity extends Settings { /* empty */ }
|
||||
public static class ManageApplicationsActivity extends Settings { /* empty */ }
|
||||
public static class AppOpsSummaryActivity extends Settings { /* empty */ }
|
||||
public static class AppOpsSummaryActivity extends Settings {
|
||||
@Override
|
||||
public boolean isValidFragment(String className) {
|
||||
if (AppOpsSummary.class.getName().equals(className)) {
|
||||
return true;
|
||||
}
|
||||
return super.isValidFragment(className);
|
||||
}
|
||||
}
|
||||
public static class StorageUseActivity extends Settings { /* empty */ }
|
||||
public static class DevelopmentSettingsActivity extends Settings { /* empty */ }
|
||||
public static class AccessibilitySettingsActivity extends Settings { /* empty */ }
|
||||
|
@@ -16,6 +16,8 @@
|
||||
|
||||
package com.android.settings.accessibility;
|
||||
|
||||
import android.app.ActionBar;
|
||||
import android.app.Activity;
|
||||
import android.content.ContentResolver;
|
||||
import android.content.Context;
|
||||
import android.content.res.Resources;
|
||||
@@ -24,22 +26,46 @@ import android.os.Bundle;
|
||||
import android.preference.ListPreference;
|
||||
import android.preference.Preference;
|
||||
import android.preference.PreferenceCategory;
|
||||
import android.preference.PreferenceFrameLayout;
|
||||
import android.preference.Preference.OnPreferenceChangeListener;
|
||||
import android.provider.Settings;
|
||||
import android.view.Gravity;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.view.ViewGroup.LayoutParams;
|
||||
import android.view.accessibility.CaptioningManager;
|
||||
import android.view.accessibility.CaptioningManager.CaptionStyle;
|
||||
|
||||
import com.android.internal.widget.SubtitleView;
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.SettingsPreferenceFragment;
|
||||
import com.android.settings.accessibility.ListDialogPreference.OnValueChangedListener;
|
||||
import com.android.settings.accessibility.ToggleSwitch.OnBeforeCheckedChangeListener;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
/**
|
||||
* Settings fragment containing captioning properties.
|
||||
*/
|
||||
public class CaptionPropertiesFragment extends SettingsPreferenceFragment
|
||||
implements OnPreferenceChangeListener, OnValueChangedListener {
|
||||
private ToggleCaptioningPreferenceFragment mParent;
|
||||
private static final String PREF_BACKGROUND_COLOR = "captioning_background_color";
|
||||
private static final String PREF_BACKGROUND_OPACITY = "captioning_background_opacity";
|
||||
private static final String PREF_FOREGROUND_COLOR = "captioning_foreground_color";
|
||||
private static final String PREF_FOREGROUND_OPACITY = "captioning_foreground_opacity";
|
||||
private static final String PREF_EDGE_COLOR = "captioning_edge_color";
|
||||
private static final String PREF_EDGE_TYPE = "captioning_edge_type";
|
||||
private static final String PREF_FONT_SIZE = "captioning_font_size";
|
||||
private static final String PREF_TYPEFACE = "captioning_typeface";
|
||||
private static final String PREF_LOCALE = "captioning_locale";
|
||||
private static final String PREF_PRESET = "captioning_preset";
|
||||
private static final String PREF_CUSTOM = "custom";
|
||||
|
||||
private static final float DEFAULT_FONT_SIZE = 48f;
|
||||
|
||||
private CaptioningManager mCaptioningManager;
|
||||
private SubtitleView mPreviewText;
|
||||
|
||||
// Standard options.
|
||||
private LocalePreference mLocale;
|
||||
@@ -49,6 +75,7 @@ public class CaptionPropertiesFragment extends SettingsPreferenceFragment
|
||||
// Custom options.
|
||||
private ListPreference mTypeface;
|
||||
private ColorPreference mForegroundColor;
|
||||
private ColorPreference mForegroundOpacity;
|
||||
private EdgeTypePreference mEdgeType;
|
||||
private ColorPreference mEdgeColor;
|
||||
private ColorPreference mBackgroundColor;
|
||||
@@ -70,35 +97,137 @@ public class CaptionPropertiesFragment extends SettingsPreferenceFragment
|
||||
installUpdateListeners();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the parent fragment, which is used to update the live preview.
|
||||
*
|
||||
* @param parent the parent fragment
|
||||
*/
|
||||
public void setParent(ToggleCaptioningPreferenceFragment parent) {
|
||||
mParent = parent;
|
||||
@Override
|
||||
public View onCreateView(
|
||||
LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
||||
final View rootView = inflater.inflate(R.layout.captioning_preview, container, false);
|
||||
|
||||
// We have to do this now because PreferenceFrameLayout looks at it
|
||||
// only when the view is added.
|
||||
if (container instanceof PreferenceFrameLayout) {
|
||||
((PreferenceFrameLayout.LayoutParams) rootView.getLayoutParams()).removeBorders = true;
|
||||
}
|
||||
|
||||
final View content = super.onCreateView(inflater, container, savedInstanceState);
|
||||
((ViewGroup) rootView.findViewById(R.id.properties_fragment)).addView(
|
||||
content, LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
|
||||
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onViewCreated(View view, Bundle savedInstanceState) {
|
||||
super.onViewCreated(view, savedInstanceState);
|
||||
|
||||
mPreviewText = (SubtitleView) view.findViewById(R.id.preview_text);
|
||||
|
||||
installActionBarToggleSwitch();
|
||||
refreshPreviewText();
|
||||
}
|
||||
|
||||
private void refreshPreviewText() {
|
||||
final Context context = getActivity();
|
||||
if (context == null) {
|
||||
// We've been destroyed, abort!
|
||||
return;
|
||||
}
|
||||
|
||||
final SubtitleView preview = mPreviewText;
|
||||
if (preview != null) {
|
||||
final int styleId = mCaptioningManager.getRawUserStyle();
|
||||
applyCaptionProperties(mCaptioningManager, preview, styleId);
|
||||
|
||||
final Locale locale = mCaptioningManager.getLocale();
|
||||
if (locale != null) {
|
||||
final CharSequence localizedText = AccessibilityUtils.getTextForLocale(
|
||||
context, locale, R.string.captioning_preview_text);
|
||||
preview.setText(localizedText);
|
||||
} else {
|
||||
preview.setText(R.string.captioning_preview_text);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void applyCaptionProperties(
|
||||
CaptioningManager manager, SubtitleView previewText, int styleId) {
|
||||
previewText.setStyle(styleId);
|
||||
|
||||
final Context context = previewText.getContext();
|
||||
final ContentResolver cr = context.getContentResolver();
|
||||
final float fontScale = manager.getFontScale();
|
||||
previewText.setTextSize(fontScale * DEFAULT_FONT_SIZE);
|
||||
|
||||
final Locale locale = manager.getLocale();
|
||||
if (locale != null) {
|
||||
final CharSequence localizedText = AccessibilityUtils.getTextForLocale(
|
||||
context, locale, R.string.captioning_preview_characters);
|
||||
previewText.setText(localizedText);
|
||||
} else {
|
||||
previewText.setText(R.string.captioning_preview_characters);
|
||||
}
|
||||
}
|
||||
|
||||
private void installActionBarToggleSwitch() {
|
||||
final Activity activity = getActivity();
|
||||
final ToggleSwitch toggleSwitch = new ToggleSwitch(activity);
|
||||
|
||||
final int padding = getResources().getDimensionPixelSize(
|
||||
R.dimen.action_bar_switch_padding);
|
||||
toggleSwitch.setPaddingRelative(0, 0, padding, 0);
|
||||
|
||||
final ActionBar actionBar = activity.getActionBar();
|
||||
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM, ActionBar.DISPLAY_SHOW_CUSTOM);
|
||||
|
||||
final ActionBar.LayoutParams params = new ActionBar.LayoutParams(
|
||||
ActionBar.LayoutParams.WRAP_CONTENT, ActionBar.LayoutParams.WRAP_CONTENT,
|
||||
Gravity.CENTER_VERTICAL | Gravity.END);
|
||||
actionBar.setCustomView(toggleSwitch, params);
|
||||
|
||||
final boolean enabled = mCaptioningManager.isEnabled();
|
||||
getPreferenceScreen().setEnabled(enabled);
|
||||
mPreviewText.setVisibility(enabled ? View.VISIBLE : View.INVISIBLE);
|
||||
toggleSwitch.setCheckedInternal(enabled);
|
||||
toggleSwitch.setOnBeforeCheckedChangeListener(new OnBeforeCheckedChangeListener() {
|
||||
@Override
|
||||
public boolean onBeforeCheckedChanged(ToggleSwitch toggleSwitch, boolean checked) {
|
||||
toggleSwitch.setCheckedInternal(checked);
|
||||
Settings.Secure.putInt(getActivity().getContentResolver(),
|
||||
Settings.Secure.ACCESSIBILITY_CAPTIONING_ENABLED, checked ? 1 : 0);
|
||||
getPreferenceScreen().setEnabled(checked);
|
||||
mPreviewText.setVisibility(checked ? View.VISIBLE : View.INVISIBLE);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private void initializeAllPreferences() {
|
||||
mLocale = (LocalePreference) findPreference("captioning_locale");
|
||||
mFontSize = (ListPreference) findPreference("captioning_font_size");
|
||||
mLocale = (LocalePreference) findPreference(PREF_LOCALE);
|
||||
mFontSize = (ListPreference) findPreference(PREF_FONT_SIZE);
|
||||
|
||||
final Resources res = getResources();
|
||||
final int[] presetValues = res.getIntArray(R.array.captioning_preset_selector_values);
|
||||
final String[] presetTitles = res.getStringArray(R.array.captioning_preset_selector_titles);
|
||||
mPreset = (PresetPreference) findPreference("captioning_preset");
|
||||
mPreset = (PresetPreference) findPreference(PREF_PRESET);
|
||||
mPreset.setValues(presetValues);
|
||||
mPreset.setTitles(presetTitles);
|
||||
|
||||
mCustom = (PreferenceCategory) findPreference("custom");
|
||||
mCustom = (PreferenceCategory) findPreference(PREF_CUSTOM);
|
||||
mShowingCustom = true;
|
||||
|
||||
final int[] colorValues = res.getIntArray(R.array.captioning_color_selector_values);
|
||||
final String[] colorTitles = res.getStringArray(R.array.captioning_color_selector_titles);
|
||||
mForegroundColor = (ColorPreference) mCustom.findPreference("captioning_foreground_color");
|
||||
mForegroundColor = (ColorPreference) mCustom.findPreference(PREF_FOREGROUND_COLOR);
|
||||
mForegroundColor.setTitles(colorTitles);
|
||||
mForegroundColor.setValues(colorValues);
|
||||
mEdgeColor = (ColorPreference) mCustom.findPreference("captioning_edge_color");
|
||||
|
||||
final int[] opacityValues = res.getIntArray(R.array.captioning_opacity_selector_values);
|
||||
final String[] opacityTitles = res.getStringArray(
|
||||
R.array.captioning_opacity_selector_titles);
|
||||
mForegroundOpacity = (ColorPreference) mCustom.findPreference(PREF_FOREGROUND_OPACITY);
|
||||
mForegroundOpacity.setTitles(opacityTitles);
|
||||
mForegroundOpacity.setValues(opacityValues);
|
||||
|
||||
mEdgeColor = (ColorPreference) mCustom.findPreference(PREF_EDGE_COLOR);
|
||||
mEdgeColor.setTitles(colorTitles);
|
||||
mEdgeColor.setValues(colorValues);
|
||||
|
||||
@@ -109,25 +238,22 @@ public class CaptionPropertiesFragment extends SettingsPreferenceFragment
|
||||
System.arraycopy(colorTitles, 0, bgColorTitles, 1, colorTitles.length);
|
||||
bgColorValues[0] = Color.TRANSPARENT;
|
||||
bgColorTitles[0] = getString(R.string.color_none);
|
||||
mBackgroundColor = (ColorPreference) mCustom.findPreference("captioning_background_color");
|
||||
mBackgroundColor = (ColorPreference) mCustom.findPreference(PREF_BACKGROUND_COLOR);
|
||||
mBackgroundColor.setTitles(bgColorTitles);
|
||||
mBackgroundColor.setValues(bgColorValues);
|
||||
|
||||
final int[] opacityValues = res.getIntArray(R.array.captioning_opacity_selector_values);
|
||||
final String[] opacityTitles = res.getStringArray(
|
||||
R.array.captioning_opacity_selector_titles);
|
||||
mBackgroundOpacity = (ColorPreference) mCustom.findPreference(
|
||||
"captioning_background_opacity");
|
||||
mBackgroundOpacity = (ColorPreference) mCustom.findPreference(PREF_BACKGROUND_OPACITY);
|
||||
mBackgroundOpacity.setTitles(opacityTitles);
|
||||
mBackgroundOpacity.setValues(opacityValues);
|
||||
|
||||
mEdgeType = (EdgeTypePreference) mCustom.findPreference("captioning_edge_type");
|
||||
mTypeface = (ListPreference) mCustom.findPreference("captioning_typeface");
|
||||
mEdgeType = (EdgeTypePreference) mCustom.findPreference(PREF_EDGE_TYPE);
|
||||
mTypeface = (ListPreference) mCustom.findPreference(PREF_TYPEFACE);
|
||||
}
|
||||
|
||||
private void installUpdateListeners() {
|
||||
mPreset.setOnValueChangedListener(this);
|
||||
mForegroundColor.setOnValueChangedListener(this);
|
||||
mForegroundOpacity.setOnValueChangedListener(this);
|
||||
mEdgeColor.setOnValueChangedListener(this);
|
||||
mBackgroundColor.setOnValueChangedListener(this);
|
||||
mBackgroundOpacity.setOnValueChangedListener(this);
|
||||
@@ -147,22 +273,11 @@ public class CaptionPropertiesFragment extends SettingsPreferenceFragment
|
||||
|
||||
final ContentResolver cr = getContentResolver();
|
||||
final CaptionStyle attrs = CaptionStyle.getCustomStyle(cr);
|
||||
mForegroundColor.setValue(attrs.foregroundColor);
|
||||
mEdgeType.setValue(attrs.edgeType);
|
||||
mEdgeColor.setValue(attrs.edgeColor);
|
||||
|
||||
final int backgroundColor = attrs.backgroundColor;
|
||||
final int bgColor;
|
||||
final int bgAlpha;
|
||||
if (Color.alpha(backgroundColor) == 0) {
|
||||
bgColor = Color.TRANSPARENT;
|
||||
bgAlpha = (backgroundColor & 0xFF) << 24;
|
||||
} else {
|
||||
bgColor = backgroundColor | 0xFF000000;
|
||||
bgAlpha = backgroundColor & 0xFF000000;
|
||||
}
|
||||
mBackgroundColor.setValue(bgColor);
|
||||
mBackgroundOpacity.setValue(bgAlpha | 0xFFFFFF);
|
||||
parseColorOpacity(mForegroundColor, mForegroundOpacity, attrs.foregroundColor);
|
||||
parseColorOpacity(mBackgroundColor, mBackgroundOpacity, attrs.backgroundColor);
|
||||
|
||||
final String rawTypeface = attrs.mRawTypeface;
|
||||
mTypeface.setValue(rawTypeface == null ? "" : rawTypeface);
|
||||
@@ -171,10 +286,30 @@ public class CaptionPropertiesFragment extends SettingsPreferenceFragment
|
||||
mLocale.setValue(rawLocale == null ? "" : rawLocale);
|
||||
}
|
||||
|
||||
private void refreshPreviewText() {
|
||||
if (mParent != null) {
|
||||
mParent.refreshPreviewText();
|
||||
private void parseColorOpacity(ColorPreference color, ColorPreference opacity, int value) {
|
||||
final int colorValue;
|
||||
final int opacityValue;
|
||||
if (Color.alpha(value) == 0) {
|
||||
colorValue = Color.TRANSPARENT;
|
||||
opacityValue = (value & 0xFF) << 24;
|
||||
} else {
|
||||
colorValue = value | 0xFF000000;
|
||||
opacityValue = value & 0xFF000000;
|
||||
}
|
||||
color.setValue(colorValue);
|
||||
opacity.setValue(opacityValue | 0xFFFFFF);
|
||||
}
|
||||
|
||||
private int mergeColorOpacity(ColorPreference color, ColorPreference opacity) {
|
||||
final int colorValue = color.getValue();
|
||||
final int opacityValue = opacity.getValue();
|
||||
final int value;
|
||||
if (Color.alpha(colorValue) == 0) {
|
||||
value = Color.alpha(opacityValue);
|
||||
} else {
|
||||
value = colorValue & 0x00FFFFFF | opacityValue & 0xFF000000;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
private void refreshShowingCustom() {
|
||||
@@ -191,20 +326,14 @@ public class CaptionPropertiesFragment extends SettingsPreferenceFragment
|
||||
@Override
|
||||
public void onValueChanged(ListDialogPreference preference, int value) {
|
||||
final ContentResolver cr = getActivity().getContentResolver();
|
||||
if (mForegroundColor == preference) {
|
||||
if (mForegroundColor == preference || mForegroundOpacity == preference) {
|
||||
final int merged = mergeColorOpacity(mForegroundColor, mForegroundOpacity);
|
||||
Settings.Secure.putInt(
|
||||
cr, Settings.Secure.ACCESSIBILITY_CAPTIONING_FOREGROUND_COLOR, value);
|
||||
cr, Settings.Secure.ACCESSIBILITY_CAPTIONING_FOREGROUND_COLOR, merged);
|
||||
} else if (mBackgroundColor == preference || mBackgroundOpacity == preference) {
|
||||
final int bgColor = mBackgroundColor.getValue();
|
||||
final int bgAlpha = mBackgroundOpacity.getValue();
|
||||
final int argb;
|
||||
if (Color.alpha(bgColor) == 0) {
|
||||
argb = Color.alpha(bgAlpha);
|
||||
} else {
|
||||
argb = bgColor & 0x00FFFFFF | bgAlpha & 0xFF000000;
|
||||
}
|
||||
final int merged = mergeColorOpacity(mBackgroundColor, mBackgroundOpacity);
|
||||
Settings.Secure.putInt(
|
||||
cr, Settings.Secure.ACCESSIBILITY_CAPTIONING_BACKGROUND_COLOR, argb);
|
||||
cr, Settings.Secure.ACCESSIBILITY_CAPTIONING_BACKGROUND_COLOR, merged);
|
||||
} else if (mEdgeColor == preference) {
|
||||
Settings.Secure.putInt(cr, Settings.Secure.ACCESSIBILITY_CAPTIONING_EDGE_COLOR, value);
|
||||
} else if (mPreset == preference) {
|
||||
|
@@ -51,7 +51,7 @@ public class PresetPreference extends ListDialogPreference {
|
||||
protected void onBindListItem(View view, int index) {
|
||||
final SubtitleView previewText = (SubtitleView) view.findViewById(R.id.preview);
|
||||
final int value = getValueAt(index);
|
||||
ToggleCaptioningPreferenceFragment.applyCaptionProperties(
|
||||
CaptionPropertiesFragment.applyCaptionProperties(
|
||||
mCaptioningManager, previewText, value);
|
||||
|
||||
previewText.setTextSize(DEFAULT_FONT_SIZE);
|
||||
|
@@ -1,152 +0,0 @@
|
||||
/*
|
||||
* 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.accessibility;
|
||||
|
||||
import android.app.ActionBar;
|
||||
import android.app.Activity;
|
||||
import android.app.Fragment;
|
||||
import android.content.ContentResolver;
|
||||
import android.content.Context;
|
||||
import android.os.Bundle;
|
||||
import android.preference.PreferenceFrameLayout;
|
||||
import android.provider.Settings;
|
||||
import android.view.Gravity;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.view.accessibility.CaptioningManager;
|
||||
|
||||
import com.android.internal.widget.SubtitleView;
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.accessibility.ToggleSwitch.OnBeforeCheckedChangeListener;
|
||||
|
||||
import java.util.Locale;
|
||||
|
||||
public class ToggleCaptioningPreferenceFragment extends Fragment {
|
||||
private static final float DEFAULT_FONT_SIZE = 48f;
|
||||
|
||||
private CaptionPropertiesFragment mPropsFragment;
|
||||
private SubtitleView mPreviewText;
|
||||
private CaptioningManager mCaptioningManager;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
mCaptioningManager = (CaptioningManager) getActivity()
|
||||
.getSystemService(Context.CAPTIONING_SERVICE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public View onCreateView(
|
||||
LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
||||
final View rootView = inflater.inflate(R.layout.captioning_preview, container, false);
|
||||
|
||||
// We have to do this now because PreferenceFrameLayout looks at it
|
||||
// only when the view is added.
|
||||
if (container instanceof PreferenceFrameLayout) {
|
||||
((PreferenceFrameLayout.LayoutParams) rootView.getLayoutParams()).removeBorders = true;
|
||||
}
|
||||
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onViewCreated(View view, Bundle savedInstanceState) {
|
||||
super.onViewCreated(view, savedInstanceState);
|
||||
|
||||
mPropsFragment = ((CaptionPropertiesFragment) getFragmentManager()
|
||||
.findFragmentById(R.id.properties_fragment));
|
||||
mPropsFragment.setParent(this);
|
||||
|
||||
mPreviewText = (SubtitleView) view.findViewById(R.id.preview_text);
|
||||
|
||||
installActionBarToggleSwitch();
|
||||
refreshPreviewText();
|
||||
}
|
||||
|
||||
public void refreshPreviewText() {
|
||||
final SubtitleView preview = mPreviewText;
|
||||
if (preview != null) {
|
||||
final Activity activity = getActivity();
|
||||
final ContentResolver cr = activity.getContentResolver();
|
||||
final int styleId = mCaptioningManager.getRawUserStyle();
|
||||
applyCaptionProperties(mCaptioningManager, preview, styleId);
|
||||
|
||||
final Locale locale = mCaptioningManager.getLocale();
|
||||
if (locale != null) {
|
||||
final CharSequence localizedText = AccessibilityUtils.getTextForLocale(
|
||||
activity, locale, R.string.captioning_preview_text);
|
||||
preview.setText(localizedText);
|
||||
} else {
|
||||
preview.setText(R.string.captioning_preview_text);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void applyCaptionProperties(
|
||||
CaptioningManager manager, SubtitleView previewText, int styleId) {
|
||||
previewText.setStyle(styleId);
|
||||
|
||||
final Context context = previewText.getContext();
|
||||
final ContentResolver cr = context.getContentResolver();
|
||||
final float fontScale = manager.getFontScale();
|
||||
previewText.setTextSize(fontScale * DEFAULT_FONT_SIZE);
|
||||
|
||||
final Locale locale = manager.getLocale();
|
||||
if (locale != null) {
|
||||
final CharSequence localizedText = AccessibilityUtils.getTextForLocale(
|
||||
context, locale, R.string.captioning_preview_characters);
|
||||
previewText.setText(localizedText);
|
||||
} else {
|
||||
previewText.setText(R.string.captioning_preview_characters);
|
||||
}
|
||||
}
|
||||
|
||||
private void installActionBarToggleSwitch() {
|
||||
final Activity activity = getActivity();
|
||||
final ToggleSwitch toggleSwitch = new ToggleSwitch(activity);
|
||||
|
||||
final int padding = getResources().getDimensionPixelSize(
|
||||
R.dimen.action_bar_switch_padding);
|
||||
toggleSwitch.setPaddingRelative(0, 0, padding, 0);
|
||||
|
||||
final ActionBar actionBar = activity.getActionBar();
|
||||
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM, ActionBar.DISPLAY_SHOW_CUSTOM);
|
||||
|
||||
final ActionBar.LayoutParams params = new ActionBar.LayoutParams(
|
||||
ActionBar.LayoutParams.WRAP_CONTENT, ActionBar.LayoutParams.WRAP_CONTENT,
|
||||
Gravity.CENTER_VERTICAL | Gravity.END);
|
||||
actionBar.setCustomView(toggleSwitch, params);
|
||||
|
||||
final boolean enabled = mCaptioningManager.isEnabled();
|
||||
mPropsFragment.getPreferenceScreen().setEnabled(enabled);
|
||||
mPreviewText.setVisibility(enabled ? View.VISIBLE : View.INVISIBLE);
|
||||
toggleSwitch.setCheckedInternal(enabled);
|
||||
toggleSwitch.setOnBeforeCheckedChangeListener(new OnBeforeCheckedChangeListener() {
|
||||
@Override
|
||||
public boolean onBeforeCheckedChanged(ToggleSwitch toggleSwitch, boolean checked) {
|
||||
toggleSwitch.setCheckedInternal(checked);
|
||||
Settings.Secure.putInt(getActivity().getContentResolver(),
|
||||
Settings.Secure.ACCESSIBILITY_CAPTIONING_ENABLED, checked ? 1 : 0);
|
||||
mPropsFragment.getPreferenceScreen().setEnabled(checked);
|
||||
mPreviewText.setVisibility(checked ? View.VISIBLE : View.INVISIBLE);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
@@ -136,6 +136,11 @@ public final class WifiDisplaySettings extends SettingsPreferenceFragment {
|
||||
setHasOptionsMenu(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected int getHelpResource() {
|
||||
return R.string.help_url_remote_display;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityCreated(Bundle savedInstanceState) {
|
||||
super.onActivityCreated(savedInstanceState);
|
||||
|
Reference in New Issue
Block a user