linphone-android/res/layout/contact_edit_row.xml
2015-11-05 16:23:59 +01:00

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>