46 lines
1.5 KiB
XML
46 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="@dimen/default_margin" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_span="2"
|
||
|
android:textSize="25dp"
|
||
|
android:textStyle="bold"
|
||
|
android:layout_marginBottom="@dimen/default_margin"
|
||
|
android:text="@string/vibrate" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/VibrateExplanation" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/etVibratePattern"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/bTestVibratePattern"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginVertical="@dimen/default_margin"
|
||
|
android:text="@string/test" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/bSaveVibratePattern"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/save" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</ScrollView>
|