blob: a869c90b08565098e70c7d47eebdae49c2388eb0 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".examples.ComposeActivity"
tools:showIn="@layout/activity_compose">
<examples.baku.io.permissions.PermissionedTextLayout
android:id="@+id/composeTo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:hint="To" />
<examples.baku.io.permissions.PermissionedTextLayout
android:id="@+id/composeFrom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:layout_below="@id/composeTo"
android:hint="From" />
<examples.baku.io.permissions.PermissionedTextLayout
android:id="@+id/composeSubject"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailSubject"
android:layout_below="@id/composeFrom"
android:hint="Subject" />
<examples.baku.io.permissions.PermissionedTextLayout
android:id="@+id/composeMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:layout_below="@id/composeSubject"
android:hint="Message" />
</RelativeLayout>