mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 12:38:07 +00:00
29 lines
926 B
XML
29 lines
926 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="5dp">
|
|
|
|
<EditText
|
|
android:textCursorDrawable="@null"
|
|
android:id="@+id/numoraddr"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@android:color/black"
|
|
android:background="@drawable/resizable_textfield"
|
|
android:inputType="textEmailAddress"
|
|
android:layout_weight="0.09"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/delete"
|
|
android:contentDescription="@string/content_description_add"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="30dp"
|
|
android:layout_weight="0.91"
|
|
android:layout_gravity="center"
|
|
android:paddingLeft="5dp"/>
|
|
|
|
</LinearLayout>
|