blob: 1b06e07be5d52927a0b2a39d9ecc1e549d617ab7 [file] [log] [blame]
Daisuke Miyakawad3669922010-08-27 10:04:08 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.settings;
18
19import android.content.Context;
Daisuke Miyakawad3669922010-08-27 10:04:08 -070020import android.util.AttributeSet;
21
Fan Zhangc7162cd2018-06-18 15:21:41 -070022import androidx.preference.PreferenceCategory;
23
Daisuke Miyakawad3669922010-08-27 10:04:08 -070024public abstract class ProgressCategoryBase extends PreferenceCategory {
Fabrice Di Meglioab9d6982014-06-17 13:56:13 -070025 public ProgressCategoryBase(Context context) {
Fan Zhangec407ff2016-12-19 11:14:59 -080026 super(context);
Fabrice Di Meglioab9d6982014-06-17 13:56:13 -070027 }
28
Daisuke Miyakawad3669922010-08-27 10:04:08 -070029 public ProgressCategoryBase(Context context, AttributeSet attrs) {
Fan Zhangec407ff2016-12-19 11:14:59 -080030 super(context, attrs);
Fabrice Di Meglioab9d6982014-06-17 13:56:13 -070031 }
32
33 public ProgressCategoryBase(Context context, AttributeSet attrs, int defStyleAttr) {
Fan Zhangec407ff2016-12-19 11:14:59 -080034 super(context, attrs, defStyleAttr);
Fabrice Di Meglioab9d6982014-06-17 13:56:13 -070035 }
36
37 public ProgressCategoryBase(Context context, AttributeSet attrs, int defStyleAttr,
Fan Zhangec407ff2016-12-19 11:14:59 -080038 int defStyleRes) {
Fabrice Di Meglioab9d6982014-06-17 13:56:13 -070039 super(context, attrs, defStyleAttr, defStyleRes);
Daisuke Miyakawad3669922010-08-27 10:04:08 -070040 }
41
42 /**
43 * Turn on/off the progress indicator and text on the right.
Fan Zhangec407ff2016-12-19 11:14:59 -080044 *
Daisuke Miyakawad3669922010-08-27 10:04:08 -070045 * @param progressOn whether or not the progress should be displayed
46 */
47 public abstract void setProgress(boolean progressOn);
48}