aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/editor.xml
blob: d5568367f50e9b05e3162b61a5fa458f2410dad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <EditText
        android:id="@+id/editorEditText"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:inputType="textMultiLine"
        android:scrollbars="vertical" >

        <requestFocus />
    </EditText>

    <Button
        android:id="@+id/editorSave"
        style="@style/button_full"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/editor_save" />

</LinearLayout>