ac_help_dialog.xml 2.24 KB
Newer Older
Lee Jaebin committed
1 2 3 4 5 6 7 8 9
<?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:background="@android:color/white"
    android:orientation="vertical">

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

        <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:text="@string/title_help"
            android:textColor="@color/edt_text"
23
            android:textSize="@dimen/opeartion_title_text_size" />
Lee Jaebin committed
24 25 26 27 28 29 30

        <ImageButton
            android:id="@+id/close_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
31
            android:background="@drawable/ic_operation_close"
Lee Jaebin committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45
            android:onClick="onClickCloseView" />
    </RelativeLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="15dp"
        android:orientation="vertical">

        <TextView
            android:id="@+id/tv_help_detail"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Help Detail"
46
            android:textColor="@color/operation_default_text_color"
Lee Jaebin committed
47 48 49 50 51 52 53 54
            android:textSize="18sp" />

        <View
            android:id="@+id/v_line"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginBottom="10dp"
            android:layout_marginTop="10dp"
55
            android:background="@color/operation_color" />
Lee Jaebin committed
56 57 58 59 60 61 62 63

        <ListView
            android:id="@+id/lv_help"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>

</LinearLayout>