18 lines
603 B
XML
18 lines
603 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="30dp">
|
|
|
|
<EditText
|
|
android:id="@+id/etNotes"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textCapSentences|textMultiLine"
|
|
style="@style/TextAppearance.AppCompat.Body1"
|
|
android:scrollbars="vertical"
|
|
android:hint="@string/example_notes"/>
|
|
|
|
</LinearLayout> |