1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
/*
* Copyright (C) 2010 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.camera.ui;
import javax.microedition.khronos.opengles.GL11;
import android.graphics.Rect;
import android.view.MotionEvent;
import android.view.View.MeasureSpec;
import android.view.animation.AlphaAnimation;
class IndicatorBar extends GLView {
public static final int INDEX_NONE = -1;
private NinePatchTexture mBackground;
private Texture mHighlight;
private int mSelectedIndex = INDEX_NONE;
private OnItemSelectedListener mSelectedListener;
private boolean mActivated = false;
private boolean mSelectionChanged = false;
private class Background extends GLView {
@Override
protected void render(GLRootView root, GL11 gl) {
mBackground.draw(root, 0, 0, getWidth(), getHeight());
if (mActivated && mSelectedIndex != INDEX_NONE
&& mHighlight != null) {
Rect bounds = IndicatorBar.this.getComponent(
mSelectedIndex + 1).mBounds;
mHighlight.draw(root, bounds.left, bounds.top,
bounds.width(), bounds.height());
}
}
}
public interface OnItemSelectedListener {
public void onItemSelected(GLView view, int position);
public void onNothingSelected();
}
public IndicatorBar() {
GLView background = new Background();
background.setVisibility(GLView.INVISIBLE);
addComponent(background);
}
public void overrideSettings(String key, String value) {
for (int i = 1, n = getComponentCount(); i < n; ++i) {
AbstractIndicator indicator = (AbstractIndicator) getComponent(i);
indicator.overrideSettings(key, value);
}
}
public void setOnItemSelectedListener(OnItemSelectedListener l) {
mSelectedListener = l;
}
public void setBackground(NinePatchTexture background) {
if (mBackground == background) return;
mBackground = background;
if (background != null) {
setPaddings(background.getPaddings());
} else {
setPaddings(0, 0, 0, 0);
}
invalidate();
}
public void setHighlight(Texture highlight) {
if (mHighlight == highlight) return;
mHighlight = highlight;
invalidate();
}
@Override
protected void onMeasure(int widthSpec, int heightSpec) {
int width = 0;
int height = 0;
for (int i = 1, n = getComponentCount(); i < n; ++i) {
GLView component = getComponent(i);
component.measure(
MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
width = Math.max(width, component.getMeasuredWidth());
height += component.getMeasuredHeight();
}
new MeasureHelper(this)
.setPreferredContentSize(width, height)
.measure(widthSpec, heightSpec);
}
@Override
protected void onLayout(
boolean changed, int left, int top, int right, int bottom) {
// Background
getComponent(0).layout(0, 0, right - left, bottom - top);
int count = getComponentCount();
Rect p = mPaddings;
int cBottom = bottom - top - p.bottom;
int cRight = right - left - p.right;
int yoffset = mPaddings.top;
int xoffset = mPaddings.left;
for (int i = 1; i < count; ++i) {
int cHeight = (cBottom - yoffset) / (count - i);
int nextYoffset = yoffset + cHeight;
getComponent(i).layout(xoffset, yoffset, cRight, nextYoffset);
yoffset = nextYoffset;
}
}
private void setSelectedItem(GLView view, int index) {
if (index == mSelectedIndex) return;
mSelectionChanged = true;
mSelectedIndex = index;
if (mSelectedListener != null) {
if (index == INDEX_NONE) {
mSelectedListener.onNothingSelected();
} else {
mSelectedListener.onItemSelected(view, index);
}
}
invalidate();
}
public void setSelectedIndex(int index) {
if (index == mSelectedIndex) return;
setSelectedItem(index == INDEX_NONE ? null :getComponent(index), index);
}
public void setActivated(boolean activated) {
if (activated == mActivated) return;
mActivated = activated;
if (activated) {
GLView background = getComponent(0);
background.setVisibility(GLView.VISIBLE);
AlphaAnimation anim = new AlphaAnimation(0, 1);
anim.setDuration(200);
background.startAnimation(anim);
} else {
GLView background = getComponent(0);
background.setVisibility(GLView.INVISIBLE);
AlphaAnimation anim = new AlphaAnimation(1, 0);
anim.setDuration(200);
background.startAnimation(anim);
}
}
public boolean isActivated() {
return mActivated;
}
@Override
protected boolean dispatchTouchEvent(MotionEvent event) {
// Do not pass motion events to children
return onTouch(event);
}
@Override @SuppressWarnings("fallthrough")
protected boolean onTouch(MotionEvent event) {
int y = (int) event.getY();
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
mSelectionChanged = false;
setActivated(true);
case MotionEvent.ACTION_MOVE:
for (int i = 1, n = getComponentCount(); i < n; ++i) {
GLView component = getComponent(i);
if (y <= component.mBounds.bottom) {
setSelectedItem(component, i - 1);
return true;
}
}
setSelectedItem(null, INDEX_NONE);
break;
case MotionEvent.ACTION_UP:
if (mSelectionChanged == false) {
setSelectedItem(null, INDEX_NONE);
}
}
return true;
}
public void reloadPreferences() {
for (int i = 1, n = getComponentCount(); i < n; ++i) {
((AbstractIndicator) getComponent(i)).reloadPreferences();
}
}
public void setOrientation(int orientation) {
for (int i = 1, n = getComponentCount(); i < n; ++i) {
((AbstractIndicator) getComponent(i)).setOrientation(orientation);
}
}
public int getSelectedIndex() {
return mSelectedIndex;
}
}
|