nextcloud-notes-android/app/src/main/res/layout/activity_edit.xml

24 lines
877 B
XML
Raw Normal View History

2015-10-01 18:54:20 +03:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/editContentContainer"
xmlns:android="http://schemas.android.com/apk/res/android"
2015-10-01 18:54:20 +03:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="it.niedermann.owncloud.notes.android.activity.CreateNoteActivity">
2015-10-01 18:54:20 +03:00
<ScrollView
android:id="@+id/scrollView2"
2015-10-01 18:54:20 +03:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2015-10-01 18:54:20 +03:00
<EditText
android:id="@+id/editContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textMultiLine|textCapSentences"
android:padding="16dp"/>
2015-10-01 18:54:20 +03:00
</ScrollView>
</LinearLayout>