30 lines
975 B
XML
30 lines
975 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
<ScrollView android:layout_height="380px"
|
|
android:layout_width="fill_parent">
|
|
|
|
<EditText android:id="@+id/textSettings"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_weight="1.0"
|
|
android:singleLine="false"
|
|
android:textSize="11px"
|
|
/>
|
|
|
|
</ScrollView>
|
|
|
|
<Button android:id="@+id/btnSettingsSave"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="40px"
|
|
android:text="@string/btn_save_settings"
|
|
android:layout_margin="0sp"
|
|
|
|
|
|
/>
|
|
</LinearLayout>
|