blob: 3fdc35c90586c5b8270523de68b676c8ad6d21b2 [file] [log] [blame]
Jason Monk97cb9c72016-02-17 16:41:01 -05001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
5 * except in compliance with the License. You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
11 * KIND, either express or implied. See the License for the specific language governing
12 * permissions and limitations under the License.
13 */
14
15package com.android.systemui.statusbar.phone;
16
17import android.content.Context;
18import android.graphics.drawable.AnimatedVectorDrawable;
19import android.util.AttributeSet;
20import android.widget.ImageView;
21import com.android.systemui.R;
22
23public class ExpandableIndicator extends ImageView {
24
25 private boolean mExpanded;
Xiaohui Chen311b98e2016-03-30 11:55:54 -070026 private boolean mIsDefaultDirection = true;
Jason Monk97cb9c72016-02-17 16:41:01 -050027
28 public ExpandableIndicator(Context context, AttributeSet attrs) {
29 super(context, attrs);
30 }
31
32 @Override
33 protected void onFinishInflate() {
34 super.onFinishInflate();
Xiaohui Chen311b98e2016-03-30 11:55:54 -070035 final int res = getDrawableResourceId(mExpanded);
Jason Monk97cb9c72016-02-17 16:41:01 -050036 setImageResource(res);
37 }
38
39 public void setExpanded(boolean expanded) {
40 if (expanded == mExpanded) return;
41 mExpanded = expanded;
Xiaohui Chen311b98e2016-03-30 11:55:54 -070042 final int res = getDrawableResourceId(!mExpanded);
Jason Monk97cb9c72016-02-17 16:41:01 -050043 // workaround to reset drawable
44 final AnimatedVectorDrawable avd = (AnimatedVectorDrawable) getContext()
45 .getDrawable(res).getConstantState().newDrawable();
46 setImageDrawable(avd);
Jason Monke80654b2016-02-24 14:53:57 -050047 avd.forceAnimationOnUI();
Jason Monk97cb9c72016-02-17 16:41:01 -050048 avd.start();
49 }
Xiaohui Chen311b98e2016-03-30 11:55:54 -070050
51 /** Whether the icons are using the default direction or the opposite */
52 public void setDefaultDirection(boolean isDefaultDirection) {
53 mIsDefaultDirection = isDefaultDirection;
54 }
55
56 private int getDrawableResourceId(boolean expanded) {
57 if (mIsDefaultDirection) {
58 return expanded ? R.drawable.ic_volume_collapse_animation
59 : R.drawable.ic_volume_expand_animation;
60 } else {
61 return expanded ? R.drawable.ic_volume_expand_animation
62 : R.drawable.ic_volume_collapse_animation;
63 }
64 }
Jason Monk97cb9c72016-02-17 16:41:01 -050065}