guid_view_toolbar.xml 1.39 KB
Newer Older
Lee Jaebin committed
1 2 3 4 5 6 7 8 9 10 11
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/RelativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/transparent"
    android:clickable="true"
    android:orientation="vertical" >

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

        <Button
            android:id="@+id/btn_exit"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="5dp"
24
            android:background="@drawable/ic_operation_close"
Lee Jaebin committed
25 26 27 28 29 30 31 32 33 34
            android:contentDescription="@string/cont_desc" />

        <TextView
            android:id="@+id/tv_guide_title"
            style="@style/DialogToolBarTitle"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_vertical|center_horizontal"
            android:text="@string/push_message_list"
            android:textColor="@color/edt_text"
35
            android:textSize="@dimen/opeartion_title_text_size" />
Lee Jaebin committed
36 37 38
    </RelativeLayout>

</RelativeLayout>