linphone-android/res/layout/contact_edit_row.xml

27 lines
No EOL
890 B
XML

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:gravity="center_vertical"
android:padding="10dp">
<EditText
android:textCursorDrawable="@null"
android:id="@+id/numoraddr"
android:layout_width="331dp"
android:layout_height="wrap_content"
android:textColor="@android:color/black"
android:background="@drawable/resizable_textfield"
android:inputType="textEmailAddress"/>
<ImageView
android:contentDescription="@string/content_description_delete"
android:id="@+id/delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/list_delete"
android:paddingLeft="5dp"
android:gravity="right" />
</TableRow>