Test: make Settings Bug: 76692459 Change-Id: I941dea40562170649bf056e675cc32e5163c0e39 Merged-In: I941dea40562170649bf056e675cc32e5163c0e39 (cherry picked from commita290b873d0
) (cherry picked from commitb1af85d155
)
244 lines
9.5 KiB
Java
244 lines
9.5 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.accessibility;
|
|
|
|
import android.content.ContentResolver;
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.graphics.Point;
|
|
import android.media.AudioManager;
|
|
import android.media.MediaPlayer;
|
|
import android.media.MediaPlayer.OnPreparedListener;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
import androidx.preference.PreferenceViewHolder;
|
|
import android.view.Display;
|
|
import android.view.ViewTreeObserver.OnGlobalLayoutListener;
|
|
import android.view.WindowManager;
|
|
import android.widget.ImageView;
|
|
import android.widget.RelativeLayout.LayoutParams;
|
|
import android.widget.Switch;
|
|
import android.widget.VideoView;
|
|
|
|
import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
|
|
import com.android.settings.R;
|
|
import com.android.settings.widget.SwitchBar;
|
|
|
|
public class ToggleScreenMagnificationPreferenceFragment extends
|
|
ToggleFeaturePreferenceFragment implements SwitchBar.OnSwitchChangeListener {
|
|
|
|
protected class VideoPreference extends Preference {
|
|
private ImageView mVideoBackgroundView;
|
|
private OnGlobalLayoutListener mLayoutListener;
|
|
|
|
public VideoPreference(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
@Override
|
|
public void onBindViewHolder(PreferenceViewHolder view) {
|
|
super.onBindViewHolder(view);
|
|
Resources res = getPrefContext().getResources();
|
|
final int backgroundAssetWidth = res.getDimensionPixelSize(
|
|
R.dimen.screen_magnification_video_background_width);
|
|
final int videoAssetWidth = res
|
|
.getDimensionPixelSize(R.dimen.screen_magnification_video_width);
|
|
final int videoAssetHeight = res
|
|
.getDimensionPixelSize(R.dimen.screen_magnification_video_height);
|
|
final int videoAssetMarginTop = res.getDimensionPixelSize(
|
|
R.dimen.screen_magnification_video_margin_top);
|
|
view.setDividerAllowedAbove(false);
|
|
view.setDividerAllowedBelow(false);
|
|
mVideoBackgroundView = (ImageView) view.findViewById(R.id.video_background);
|
|
final VideoView videoView = (VideoView) view.findViewById(R.id.video);
|
|
|
|
// Loop the video.
|
|
videoView.setOnPreparedListener(new OnPreparedListener() {
|
|
@Override
|
|
public void onPrepared(MediaPlayer mediaPlayer) {
|
|
mediaPlayer.setLooping(true);
|
|
}
|
|
});
|
|
|
|
// Make sure the VideoView does not request audio focus.
|
|
videoView.setAudioFocusRequest(AudioManager.AUDIOFOCUS_NONE);
|
|
|
|
// Resolve and set the video content
|
|
Bundle args = getArguments();
|
|
if ((args != null) && args.containsKey(
|
|
AccessibilitySettings.EXTRA_VIDEO_RAW_RESOURCE_ID)) {
|
|
videoView.setVideoURI(Uri.parse(String.format("%s://%s/%s",
|
|
ContentResolver.SCHEME_ANDROID_RESOURCE,
|
|
getPrefContext().getPackageName(),
|
|
args.getInt(AccessibilitySettings.EXTRA_VIDEO_RAW_RESOURCE_ID))));
|
|
}
|
|
|
|
// Make sure video controls (e.g. for pausing) are not displayed.
|
|
videoView.setMediaController(null);
|
|
|
|
// LayoutListener for adjusting the position of the VideoView on the background image.
|
|
mLayoutListener = new OnGlobalLayoutListener() {
|
|
@Override
|
|
public void onGlobalLayout() {
|
|
final int backgroundViewWidth = mVideoBackgroundView.getWidth();
|
|
|
|
LayoutParams videoLp = (LayoutParams) videoView.getLayoutParams();
|
|
videoLp.width = videoAssetWidth * backgroundViewWidth / backgroundAssetWidth;
|
|
videoLp.height = videoAssetHeight * backgroundViewWidth / backgroundAssetWidth;
|
|
videoLp.setMargins(0,
|
|
videoAssetMarginTop * backgroundViewWidth / backgroundAssetWidth, 0, 0);
|
|
videoView.setLayoutParams(videoLp);
|
|
videoView.invalidate();
|
|
videoView.start();
|
|
}
|
|
};
|
|
|
|
mVideoBackgroundView.getViewTreeObserver().addOnGlobalLayoutListener(mLayoutListener);
|
|
}
|
|
|
|
@Override
|
|
protected void onPrepareForRemoval() {
|
|
mVideoBackgroundView.getViewTreeObserver()
|
|
.removeOnGlobalLayoutListener(mLayoutListener);
|
|
}
|
|
}
|
|
|
|
protected VideoPreference mVideoPreference;
|
|
protected Preference mConfigWarningPreference;
|
|
|
|
private boolean mLaunchFromSuw = false;
|
|
private boolean mInitialSetting = false;
|
|
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
|
|
mVideoPreference = new VideoPreference(getPrefContext());
|
|
mVideoPreference.setSelectable(false);
|
|
mVideoPreference.setPersistent(false);
|
|
mVideoPreference.setLayoutResource(R.layout.magnification_video_preference);
|
|
|
|
mConfigWarningPreference = new Preference(getPrefContext());
|
|
mConfigWarningPreference.setSelectable(false);
|
|
mConfigWarningPreference.setPersistent(false);
|
|
mConfigWarningPreference.setVisible(false);
|
|
mConfigWarningPreference.setIcon(R.drawable.ic_warning_24dp);
|
|
|
|
final PreferenceScreen preferenceScreen = getPreferenceManager().getPreferenceScreen();
|
|
preferenceScreen.setOrderingAsAdded(false);
|
|
mVideoPreference.setOrder(0);
|
|
mConfigWarningPreference.setOrder(2);
|
|
preferenceScreen.addPreference(mVideoPreference);
|
|
preferenceScreen.addPreference(mConfigWarningPreference);
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
|
|
VideoView videoView = (VideoView) getView().findViewById(R.id.video);
|
|
if (videoView != null) {
|
|
videoView.start();
|
|
}
|
|
|
|
updateConfigurationWarningIfNeeded();
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
// TODO: Distinguish between magnification modes
|
|
return MetricsEvent.ACCESSIBILITY_TOGGLE_SCREEN_MAGNIFICATION;
|
|
}
|
|
|
|
@Override
|
|
public void onSwitchChanged(Switch switchView, boolean isChecked) {
|
|
onPreferenceToggled(mPreferenceKey, isChecked);
|
|
}
|
|
|
|
@Override
|
|
protected void onPreferenceToggled(String preferenceKey, boolean enabled) {
|
|
MagnificationPreferenceFragment.setChecked(getContentResolver(), preferenceKey, enabled);
|
|
updateConfigurationWarningIfNeeded();
|
|
}
|
|
|
|
@Override
|
|
protected void onInstallSwitchBarToggleSwitch() {
|
|
super.onInstallSwitchBarToggleSwitch();
|
|
|
|
mSwitchBar.setCheckedInternal(
|
|
MagnificationPreferenceFragment.isChecked(getContentResolver(), mPreferenceKey));
|
|
mSwitchBar.addOnSwitchChangeListener(this);
|
|
}
|
|
|
|
@Override
|
|
protected void onRemoveSwitchBarToggleSwitch() {
|
|
super.onRemoveSwitchBarToggleSwitch();
|
|
mSwitchBar.removeOnSwitchChangeListener(this);
|
|
}
|
|
|
|
@Override
|
|
protected void onProcessArguments(Bundle arguments) {
|
|
super.onProcessArguments(arguments);
|
|
if (arguments == null) {
|
|
return;
|
|
}
|
|
|
|
if (arguments.containsKey(AccessibilitySettings.EXTRA_VIDEO_RAW_RESOURCE_ID)) {
|
|
mVideoPreference.setVisible(true);
|
|
final int resId = arguments.getInt(
|
|
AccessibilitySettings.EXTRA_VIDEO_RAW_RESOURCE_ID);
|
|
} else {
|
|
mVideoPreference.setVisible(false);
|
|
}
|
|
|
|
if (arguments.containsKey(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW)) {
|
|
mLaunchFromSuw = arguments.getBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW);
|
|
}
|
|
|
|
if (arguments.containsKey(AccessibilitySettings.EXTRA_CHECKED)) {
|
|
mInitialSetting = arguments.getBoolean(AccessibilitySettings.EXTRA_CHECKED);
|
|
}
|
|
|
|
if (arguments.containsKey(AccessibilitySettings.EXTRA_TITLE_RES)) {
|
|
final int titleRes = arguments.getInt(AccessibilitySettings.EXTRA_TITLE_RES);
|
|
if (titleRes > 0) {
|
|
getActivity().setTitle(titleRes);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void updateConfigurationWarningIfNeeded() {
|
|
final CharSequence warningMessage =
|
|
MagnificationPreferenceFragment.getConfigurationWarningStringForSecureSettingsKey(
|
|
mPreferenceKey, getPrefContext());
|
|
if (warningMessage != null) {
|
|
mConfigWarningPreference.setSummary(warningMessage);
|
|
}
|
|
mConfigWarningPreference.setVisible(warningMessage != null);
|
|
}
|
|
|
|
private static int getScreenWidth(Context context) {
|
|
WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
|
|
Display display = wm.getDefaultDisplay();
|
|
Point size = new Point();
|
|
display.getSize(size);
|
|
return size.x;
|
|
}
|
|
}
|