2017-12-18 16:57:24 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-12-18 21:23:47 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-12-18 16:57:24 +01:00
|
|
|
android:id="@+id/contact_email_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyEditText
|
|
|
|
android:id="@+id/contact_email"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toLeftOf="@+id/contact_email_type"
|
|
|
|
android:layout_toStartOf="@+id/contact_email_type"
|
|
|
|
android:hint="@string/email"
|
|
|
|
android:inputType="textEmailAddress"
|
|
|
|
android:lines="1"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:singleLine="true"
|
2017-12-20 21:38:16 +01:00
|
|
|
android:textCursorDrawable="@null"
|
2017-12-18 16:57:24 +01:00
|
|
|
android:textSize="@dimen/bigger_text_size"/>
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
|
|
|
android:id="@+id/contact_email_type"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignBottom="@+id/contact_email"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignTop="@+id/contact_email"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingLeft="@dimen/medium_margin"
|
|
|
|
android:paddingRight="@dimen/medium_margin"
|
2017-12-18 21:23:47 +01:00
|
|
|
android:textSize="@dimen/bigger_text_size"
|
|
|
|
tools:text="@string/home"/>
|
2017-12-18 16:57:24 +01:00
|
|
|
|
|
|
|
</RelativeLayout>
|