22 lines
586 B
XML
22 lines
586 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:inputType="textMultiLine"
|
|
android:layout_height="0dp"
|
|
android:ems="10"
|
|
android:layout_weight="1.0"
|
|
android:background="#FFEBEBEB"
|
|
android:id="@+id/fragmentsourcesEditText1"
|
|
android:gravity="top"
|
|
android:padding="10dp"/>
|
|
|
|
</LinearLayout>
|
|
|