Avoid activity_contact.xml warnings
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
<?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"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/ContactView"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
@ -33,6 +34,7 @@
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/ImageAvatar"
|
||||
android:contentDescription="@string/avatar_image"
|
||||
android:layout_height="96dp"
|
||||
android:layout_width="96dp"
|
||||
android:adjustViewBounds="true"
|
||||
@ -55,26 +57,29 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:inputType="textPersonName|textCapWords"
|
||||
android:textSize="18sp"
|
||||
android:layout_width="fill_parent">
|
||||
android:layout_width="fill_parent"
|
||||
android:importantForAutofill="no"
|
||||
tools:ignore="LabelFor">
|
||||
</EditText>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/SipUriTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="18sp"
|
||||
android:paddingTop="10dp"
|
||||
android:text="@string/sip_uri" >
|
||||
android:id="@+id/SipUriTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="18sp"
|
||||
android:paddingTop="10dp"
|
||||
android:text="@string/sip_uri" >
|
||||
</TextView>
|
||||
|
||||
<EditText
|
||||
android:id="@+id/Uri"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/sip_uri"
|
||||
android:inputType="textEmailAddress"
|
||||
android:textSize="18sp"
|
||||
android:importantForAutofill="no" >
|
||||
android:id="@+id/Uri"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/sip_uri"
|
||||
android:inputType="textEmailAddress"
|
||||
android:textSize="18sp"
|
||||
android:importantForAutofill="no"
|
||||
tools:ignore="TextFields" >
|
||||
</EditText>
|
||||
|
||||
<RelativeLayout
|
||||
|
||||
@ -387,6 +387,7 @@
|
||||
<string name="invalid_contact_uri">Virheellinen SIP URI \'%1$s\'</string>
|
||||
<string name="android_contact_help">Jos merkitty, tämä yhteystieto näkyy myös Androidin
|
||||
yhteystiedoissa.</string>
|
||||
<string name="avatar_image">Profiilikuva</string>
|
||||
<!-- Contacts Activity -->
|
||||
<string name="contacts">Yhteystiedot</string>
|
||||
<string name="contact_action_question">Haluatko soittaa tai lähettää
|
||||
|
||||
@ -348,6 +348,7 @@
|
||||
<string name="invalid_contact_uri">Invalid SIP URI</string>
|
||||
<string name="android" translatable="false">Android</string>
|
||||
<string name="android_contact_help">If checked, this contact is available also in Android contacts.</string>
|
||||
<string name="avatar_image">Profile image</string>
|
||||
<!-- Contacts Activity -->
|
||||
<string name="contacts">Contacts</string>
|
||||
<string name="contact_action_question">Do you want to call or send message to \'%1$s\'?</string>
|
||||
|
||||
Reference in New Issue
Block a user