1<?xml version="1.0" encoding="UTF-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 android:orientation="horizontal"
6 android:background="@drawable/elv_popup_bg"
7 android:paddingRight="8dp"
8 android:gravity="center">
9 <TextView android:id="@+id/text"
10 android:padding="8dp"
11 android:textSize="16sp"
12 android:layout_weight="1"
13 android:singleLine="true"
14 android:ellipsize="end"
15 android:textColor="@color/elv_popup_text_color"
16 android:layout_width="wrap_content"
17 android:layout_height="wrap_content"/>
18 <View
19 android:layout_weight="0"
20 android:layout_marginRight="8dp"
21 android:layout_marginLeft="8dp"
22 android:layout_marginTop="15dp"
23 android:layout_marginBottom="15dp"
24 android:layout_width="1dp"
25 android:layout_height="fill_parent"
26 android:background="@color/elv_separator_color"/>
27 <Button android:id="@+id/undo"
28 android:textColor="@color/elv_popup_text_color"
29 android:background="@drawable/elv_undo_btn_bg"
30 android:drawableLeft="@drawable/elv_ic_action_undo"
31 android:layout_weight="0"
32 android:paddingRight="8dp"
33 android:layout_width="wrap_content"
34 android:layout_height="wrap_content"/>
35</LinearLayout>