diff options
author | 2011-09-28 20:11:05 +0900 | |
---|---|---|
committer | 2011-09-29 11:46:20 +0900 | |
commit | 433965784dca1a2cd801e1aab8c8258f64d8c7e0 (patch) | |
tree | d6f05c54e689b138e35e5a40fe517b670783c3a7 /java/res/layout | |
parent | 90086846dc9a677dafc1ea92138ac88f3f933046 (diff) | |
download | latinime-433965784dca1a2cd801e1aab8c8258f64d8c7e0.tar.gz latinime-433965784dca1a2cd801e1aab8c8258f64d8c7e0.tar.xz latinime-433965784dca1a2cd801e1aab8c8258f64d8c7e0.zip |
add vibration duration settings
Change-Id: I56a1a94df63160f367f866da759d7dd4fc428ed5
Diffstat (limited to 'java/res/layout')
-rw-r--r-- | java/res/layout/vibration_settings_dialog.xml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/java/res/layout/vibration_settings_dialog.xml b/java/res/layout/vibration_settings_dialog.xml new file mode 100644 index 000000000..981ba9be0 --- /dev/null +++ b/java/res/layout/vibration_settings_dialog.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2011, 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. +*/ +--> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_margin="10dip"> + <LinearLayout + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center_horizontal" + android:layout_margin="10dip"> + <TextView android:id="@+id/vibration_value" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="20dip"/> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/settings_ms" + android:textSize="20dip"/> + </LinearLayout> + <SeekBar + android:id="@+id/vibration_settings" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:max="250" + android:layout_margin="10dip"/> +</LinearLayout> |