blob: 230db0c00c50162cc7081213bc5bdb4b7a61ec2a [file] [log] [blame]
Yang Li35aa84b2009-05-18 18:29:05 -07001/*
2 * Copyright (C) 2009 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
Romain Guydb567c32009-05-21 16:23:21 -070017package android.gesture;
Yang Li35aa84b2009-05-18 18:29:05 -070018
19interface GestureConstants {
Yang Li35aa84b2009-05-18 18:29:05 -070020 static final int STROKE_STRING_BUFFER_SIZE = 1024;
21 static final int STROKE_POINT_BUFFER_SIZE = 100; // number of points
Romain Guyb6d99b72009-05-21 15:05:50 -070022
23 static final int IO_BUFFER_SIZE = 32 * 1024; // 32K
24
25 static final String LOG_TAG = "Gestures";
Yang Li35aa84b2009-05-18 18:29:05 -070026}