OSDN Git Service

Repackaged com.andrew.apollo to com.cyngn.eleven
[android-x86/packages-apps-Eleven.git] / src / com / cyngn / eleven / widgets / theme / ThemeableSeekBar.java
1 /*
2  * Copyright (C) 2012 Andrew Neal Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance with the
4  * License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
6  * or agreed to in writing, software distributed under the License is
7  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
8  * KIND, either express or implied. See the License for the specific language
9  * governing permissions and limitations under the License.
10  */
11
12 package com.cyngn.eleven.widgets.theme;
13
14 import android.content.Context;
15 import android.util.AttributeSet;
16 import android.widget.SeekBar;
17
18 import com.cyngn.eleven.utils.ThemeUtils;
19
20 /**
21  * @author Andrew Neal (andrewdneal@gmail.com)
22  */
23 public class ThemeableSeekBar extends SeekBar {
24
25     /**
26      * Used to set the progess bar
27      */
28     public static final String PROGESS = "audio_player_seekbar";
29
30     /**
31      * @param context The {@link Context} to use
32      * @param attrs The attributes of the XML tag that is inflating the view.
33      */
34     public ThemeableSeekBar(final Context context, final AttributeSet attrs) {
35         super(context, attrs);
36         // Initialze the theme resources
37         final ThemeUtils resources = new ThemeUtils(context);
38         // Theme the seek bar
39         setProgressDrawable(resources.getDrawable(PROGESS));
40     }
41
42 }