• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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 
17 package com.example.android.apis.graphics;
18 
19 import android.app.Activity;
20 import android.content.Context;
21 import android.graphics.*;
22 import android.os.Bundle;
23 import android.view.KeyEvent;
24 import android.view.View;
25 import android.view.Window;
26 
27 public class UnicodeChart extends GraphicsActivity {
28 
29     @Override
onCreate(Bundle savedInstanceState)30     protected void onCreate(Bundle savedInstanceState) {
31         super.onCreate(savedInstanceState);
32 
33         requestWindowFeature(Window.FEATURE_NO_TITLE);
34 
35         setContentView(new SampleView(this));
36     }
37 
38     private static class SampleView extends View {
39         private Paint mBigCharPaint;
40         private Paint mLabelPaint;
41         private final char[] mChars = new char[256];
42         private final float[] mPos = new float[512];
43 
44         private int mBase;
45 
46         private static final int XMUL = 20;
47         private static final int YMUL = 28;
48         private static final int YBASE = 18;
49 
SampleView(Context context)50         public SampleView(Context context) {
51             super(context);
52             setFocusable(true);
53             setFocusableInTouchMode(true);
54 
55             mBigCharPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
56             mBigCharPaint.setTextSize(15);
57             mBigCharPaint.setTextAlign(Paint.Align.CENTER);
58 
59             mLabelPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
60             mLabelPaint.setTextSize(8);
61             mLabelPaint.setTextAlign(Paint.Align.CENTER);
62 
63             // the position array is the same for all charts
64             float[] pos = mPos;
65             int index = 0;
66             for (int col = 0; col < 16; col++) {
67                 final float x = col * 20 + 10;
68                 for (int row = 0; row < 16; row++) {
69                     pos[index++] = x;
70                     pos[index++] = row * YMUL + YBASE;
71                 }
72             }
73         }
74 
computeX(int index)75         private float computeX(int index) {
76             return (index >> 4) * 20 + 10;
77         }
78 
computeY(int index)79         private float computeY(int index) {
80             return (index & 0xF) * YMUL + YMUL;
81         }
82 
drawChart(Canvas canvas, int base)83         private void drawChart(Canvas canvas, int base) {
84             char[] chars = mChars;
85             for (int i = 0; i < 256; i++) {
86                 int unichar = base + i;
87                 chars[i] = (char)unichar;
88 
89                 canvas.drawText(Integer.toHexString(unichar),
90                                 computeX(i), computeY(i), mLabelPaint);
91             }
92             canvas.drawPosText(chars, 0, 256, mPos, mBigCharPaint);
93         }
94 
onDraw(Canvas canvas)95         @Override protected void onDraw(Canvas canvas) {
96             canvas.drawColor(Color.WHITE);
97 
98             canvas.translate(0, 1);
99             drawChart(canvas, mBase * 256);
100         }
101 
onKeyDown(int keyCode, KeyEvent event)102         @Override public boolean onKeyDown(int keyCode, KeyEvent event) {
103             switch (keyCode) {
104                 case KeyEvent.KEYCODE_DPAD_LEFT:
105                     if (mBase > 0) {
106                         mBase -= 1;
107                         invalidate();
108                     }
109                     return true;
110                 case KeyEvent.KEYCODE_DPAD_RIGHT:
111                     mBase += 1;
112                     invalidate();
113                     return true;
114                 default:
115                     break;
116             }
117             return super.onKeyDown(keyCode, event);
118         }
119     }
120 }
121 
122