add a type at the email field

This commit is contained in:
tibbi 2017-12-17 23:19:15 +01:00
parent 4e77674377
commit 449e487667
2 changed files with 17 additions and 0 deletions

View File

@ -115,6 +115,7 @@ class ContactActivity : SimpleActivity() {
//contact_send_email.setOnClickListener { sendEmailIntent(contact!!.email) }
contact_source.setOnClickListener { showAccountSourcePicker() }
contact_number_type.setOnClickListener { }
contact_email_type.setOnClickListener { }
updateTextColors(contact_scrollview)
wasActivityInitialized = true

View File

@ -185,6 +185,7 @@
android:layout_marginLeft="@dimen/medium_margin"
android:layout_marginStart="@dimen/medium_margin"
android:layout_marginTop="@dimen/normal_margin"
android:layout_toLeftOf="@+id/contact_email_type"
android:layout_toRightOf="@+id/contact_name_image"
android:hint="@string/email"
android:inputType="textEmailAddress"
@ -193,6 +194,21 @@
android:singleLine="true"
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"
android:text="@string/home"
android:textSize="@dimen/bigger_text_size"/>
<ImageView
android:id="@+id/contact_source_image"
android:layout_width="wrap_content"