diff options
author | 2011-09-28 20:10:47 -0700 | |
---|---|---|
committer | 2011-09-28 20:10:47 -0700 | |
commit | 2258aa830efa3f42e23ce47b3e899df39d67c65b (patch) | |
tree | d6f05c54e689b138e35e5a40fe517b670783c3a7 /java/res/layout | |
parent | a2ee19e5dfdd5b59d7bed83fdf8de602b343f016 (diff) | |
parent | 3da2b6128367498577fc4ac83cb07075c2904205 (diff) | |
download | latinime-2258aa830efa3f42e23ce47b3e899df39d67c65b.tar.gz latinime-2258aa830efa3f42e23ce47b3e899df39d67c65b.tar.xz latinime-2258aa830efa3f42e23ce47b3e899df39d67c65b.zip |
am 3da2b612: Merge "add vibration duration settings"
* commit '3da2b6128367498577fc4ac83cb07075c2904205':
add vibration duration settings
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> |