51 lines
1.5 KiB
XML
51 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_margin="10dp" >
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical" >
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tvRuleTitle"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/textToSpeak" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/etTextToSpeak"
|
||
|
android:layout_marginBottom="10dp"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ems="10"
|
||
|
android:inputType="textUri" >
|
||
|
|
||
|
<requestFocus />
|
||
|
</EditText>
|
||
|
|
||
|
|
||
|
<ScrollView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tvLegend"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dip"
|
||
|
android:text="@string/urlLegend" />
|
||
|
|
||
|
</ScrollView>
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/bSaveTriggerUrl"
|
||
|
android:layout_marginTop="15dp"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/save" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</ScrollView>
|