* #24533 New Contact List, with data model
* #23415 general refactoring
diff --git a/res/layout/clearable_edit_text.xml b/res/layout/clearable_edit_text.xml
new file mode 100644
index 0000000..5ce602c
--- /dev/null
+++ b/res/layout/clearable_edit_text.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content" >
+
+    <EditText
+        android:id="@+id/clearable_edit"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content"
+        android:paddingRight="35dip" />
+
+    <Button
+        android:id="@+id/clearable_button_clear"
+        android:layout_width="30dip"
+        android:layout_height="30dip"
+        android:layout_alignParentRight="true"
+        android:layout_centerVertical="true"
+        android:layout_marginRight="5dip"
+        android:background="@drawable/ic_menu_close_clear_cancel" />
+
+</RelativeLayout>
\ No newline at end of file