fill in the default phone number and email types

This commit is contained in:
tibbi 2017-12-20 22:26:23 +01:00
parent 9078c93ec7
commit 81e72b40ca
2 changed files with 4 additions and 6 deletions

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/contact_email_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content">
@ -33,7 +32,7 @@
android:gravity="center"
android:paddingLeft="@dimen/medium_margin"
android:paddingRight="@dimen/medium_margin"
android:textSize="@dimen/bigger_text_size"
tools:text="@string/home"/>
android:text="@string/home"
android:textSize="@dimen/bigger_text_size"/>
</RelativeLayout>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/contact_number_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content">
@ -33,7 +32,7 @@
android:gravity="center"
android:paddingLeft="@dimen/medium_margin"
android:paddingRight="@dimen/medium_margin"
android:textSize="@dimen/bigger_text_size"
tools:text="@string/mobile"/>
android:text="@string/mobile"
android:textSize="@dimen/bigger_text_size"/>
</RelativeLayout>