operation_select_dialog.xml 1.57 KB
Newer Older
Lee Jaebin committed
1 2 3 4 5
<?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="420dp"
    android:minHeight="300dp"
6
    android:background="@color/operation_bg"
Lee Jaebin committed
7 8 9 10
    android:orientation="vertical">

    <RelativeLayout
        android:id="@+id/toolbar_layout"
11
        style="@style/OperationSearchToolBar"
Lee Jaebin committed
12 13 14 15 16 17 18 19 20 21 22 23
        android:layout_height="50dp"
        android:layout_width="match_parent">

        <TextView
            android:id="@+id/tv_toolbar_title"
            style="@style/DialogToolBarTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:ellipsize="end"
            android:singleLine="true"
24
            android:text="@string/operation_select"
Lee Jaebin committed
25
            android:textColor="@color/edt_text"
26
            android:textSize="@dimen/opeartion_title_text_size" />
Lee Jaebin committed
27 28 29 30 31 32 33

        <Button
            android:id="@+id/close_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
34
            android:background="@drawable/ic_operation_close"
Lee Jaebin committed
35 36 37 38
            android:contentDescription="@string/cont_desc" />
    </RelativeLayout>

    <ListView
39
        android:id="@+id/lv_operation_select"
Lee Jaebin committed
40 41 42 43
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>