aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/editor.xml
blob: 88b1b10285b7e1f5e804009b607c5f30ad6c262c (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"
        android:background="?background_color" >

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

        <requestFocus />
    </EditText>

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