mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
34 lines
No EOL
991 B
XML
34 lines
No EOL
991 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">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<EditText
|
|
android:textCursorDrawable="@null"
|
|
android:id="@+id/numoraddr"
|
|
android:layout_width="300dp"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@android:color/black"
|
|
android:background="@drawable/resizable_textfield"
|
|
android:inputType="textEmailAddress"
|
|
android:layout_weight="0.9"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/delete"
|
|
android:src="@drawable/delete_field_default"
|
|
android:contentDescription="@string/content_description_add"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_weight="0.1"
|
|
android:paddingLeft="10dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</TableRow> |