blob: e9033cc8126809fc039a26e4a01ac41fa933f5fa [file] [log] [blame]
The Android Open Source Projectb64d3452009-03-03 19:32:20 -08001/*
2 * Copyright (C) 2008 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.camera;
18
19import android.content.Context;
20import android.graphics.Canvas;
21import android.graphics.Paint;
22import android.graphics.RectF;
23import android.text.Layout;
24import android.util.AttributeSet;
25import android.widget.TextView;
26
27/**
Chih-Chung Chang5ceee692009-04-01 00:40:11 -070028 * TextView that draws a bubble behind the text. We cannot use a
29 * LineBackgroundSpan because we want to make the bubble taller than the text
30 * and TextView's clip is too aggressive.
The Android Open Source Projectb64d3452009-03-03 19:32:20 -080031 */
32public class ActionMenuButton extends TextView {
Chih-Chung Chang233b3b92009-04-08 05:21:00 -070033 private static final int CORNER_RADIUS = 8;
34 private static final int PADDING_H = 5;
35 private static final int PADDING_V = 1;
The Android Open Source Projectb64d3452009-03-03 19:32:20 -080036
37 private final RectF mRect = new RectF();
38 private Paint mPaint;
39
40 public ActionMenuButton(Context context) {
41 super(context);
42 init();
43 }
44
45 public ActionMenuButton(Context context, AttributeSet attrs) {
46 super(context, attrs);
47 init();
48 }
49
50 public ActionMenuButton(Context context, AttributeSet attrs, int defStyle) {
51 super(context, attrs, defStyle);
52 init();
53 }
54
55 private void init() {
56 setFocusable(true);
Chih-Chung Chang8f7c4a42009-04-08 22:35:03 -070057 // We need extra padding below to prevent the bubble being cut.
Chih-Chung Chang6258c6f2009-04-20 16:03:36 +080058 setPadding(PADDING_H, 0, PADDING_H, PADDING_V);
The Android Open Source Projectb64d3452009-03-03 19:32:20 -080059
60 mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
Chih-Chung Chang5ceee692009-04-01 00:40:11 -070061 mPaint.setColor(getContext().getResources()
62 .getColor(R.color.bubble_dark_background));
The Android Open Source Projectb64d3452009-03-03 19:32:20 -080063 }
64
The Android Open Source Projectb64d3452009-03-03 19:32:20 -080065 @Override
66 protected void drawableStateChanged() {
67 invalidate();
68 super.drawableStateChanged();
69 }
70
71 @Override
72 public void draw(Canvas canvas) {
73 final Layout layout = getLayout();
74 final RectF rect = mRect;
75 final int left = getCompoundPaddingLeft();
76 final int top = getExtendedPaddingTop();
77
78 rect.set(left + layout.getLineLeft(0) - PADDING_H,
Chih-Chung Chang5ceee692009-04-01 00:40:11 -070079 top + layout.getLineTop(0) - PADDING_V,
80 Math.min(left + layout.getLineRight(0) + PADDING_H,
81 mScrollX + mRight - mLeft),
82 top + layout.getLineBottom(0) + PADDING_V);
The Android Open Source Projectb64d3452009-03-03 19:32:20 -080083 canvas.drawRoundRect(rect, CORNER_RADIUS, CORNER_RADIUS, mPaint);
84
85 super.draw(canvas);
86 }
87}