Talk back will read "Used for 3m" as "Used for 3 meters", but it will read "Used for 3h 3m" correctly. This cl add specific Ttsspan if the time only contains "minute" Bug: 36379530 Test: Run SettingsRoboTests Change-Id: I033575938cce24221980dddd9d66be4e18804541
108 lines
3.5 KiB
Java
108 lines
3.5 KiB
Java
/*
|
|
* Copyright (C) 2009 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.fuelgauge;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.drawable.ColorDrawable;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.support.v7.preference.PreferenceViewHolder;
|
|
import android.util.AttributeSet;
|
|
import android.widget.ImageView;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.TextView;
|
|
import com.android.settings.R;
|
|
import com.android.settings.TintablePreference;
|
|
import com.android.settings.Utils;
|
|
|
|
/**
|
|
* Custom preference for displaying battery usage info as a bar and an icon on
|
|
* the left for the subsystem/app type.
|
|
*
|
|
* The battery usage info could be usage percentage or usage time. The preference
|
|
* won't show any icon if it is null.
|
|
*/
|
|
public class PowerGaugePreference extends TintablePreference {
|
|
private final int mIconSize;
|
|
|
|
private BatteryEntry mInfo;
|
|
private CharSequence mContentDescription;
|
|
private CharSequence mProgress;
|
|
|
|
public PowerGaugePreference(Context context, Drawable icon, CharSequence contentDescription,
|
|
BatteryEntry info) {
|
|
this(context, null, icon, contentDescription, info);
|
|
}
|
|
|
|
public PowerGaugePreference(Context context) {
|
|
this(context, null, null, null, null);
|
|
}
|
|
|
|
public PowerGaugePreference(Context context, AttributeSet attrs) {
|
|
this(context, attrs, null, null, null);
|
|
}
|
|
|
|
private PowerGaugePreference(Context context, AttributeSet attrs, Drawable icon,
|
|
CharSequence contentDescription, BatteryEntry info) {
|
|
super(context, attrs);
|
|
setIcon(icon != null ? icon : new ColorDrawable(0));
|
|
setWidgetLayoutResource(R.layout.preference_widget_summary);
|
|
mInfo = info;
|
|
mContentDescription = contentDescription;
|
|
mIconSize = context.getResources().getDimensionPixelSize(R.dimen.app_icon_size);
|
|
}
|
|
|
|
public void setContentDescription(String name) {
|
|
mContentDescription = name;
|
|
notifyChanged();
|
|
}
|
|
|
|
public void setPercent(double percentOfTotal) {
|
|
mProgress = Utils.formatPercentage(percentOfTotal, true);
|
|
notifyChanged();
|
|
}
|
|
|
|
public String getPercent() {
|
|
return mProgress.toString();
|
|
}
|
|
|
|
public void setSubtitle(CharSequence subtitle) {
|
|
mProgress = subtitle;
|
|
notifyChanged();
|
|
}
|
|
|
|
public CharSequence getSubtitle() {
|
|
return mProgress;
|
|
}
|
|
|
|
BatteryEntry getInfo() {
|
|
return mInfo;
|
|
}
|
|
|
|
@Override
|
|
public void onBindViewHolder(PreferenceViewHolder view) {
|
|
super.onBindViewHolder(view);
|
|
ImageView icon = (ImageView) view.findViewById(android.R.id.icon);
|
|
icon.setLayoutParams(new LinearLayout.LayoutParams(mIconSize, mIconSize));
|
|
|
|
((TextView) view.findViewById(R.id.widget_summary)).setText(mProgress);
|
|
if (mContentDescription != null) {
|
|
final TextView titleView = (TextView) view.findViewById(android.R.id.title);
|
|
titleView.setContentDescription(mContentDescription);
|
|
}
|
|
}
|
|
}
|