communication_menu_dialog.xml 10.5 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="300dp"
    android:minHeight="200dp"
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 24 25 26 27 28 29 30 31 32 33 34
        android:layout_height="50dp"
        android:layout_width="match_parent">

        <Button
            android:id="@+id/back_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:background="@drawable/ic_history_back_on"
            android:visibility="gone" />

        <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"
            android:text="@string/communication"
            android:textColor="@color/edt_text"
35
            android:textSize="@dimen/opeartion_title_text_size" />
Lee Jaebin committed
36

37
        <ImageButton
Lee Jaebin committed
38 39 40 41 42
            android:id="@+id/close_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
43
            android:background="@drawable/ic_operation_close"
Lee Jaebin committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
            android:contentDescription="@string/cont_desc" />
    </RelativeLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="15dp"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:orientation="vertical"
        android:focusable="false"
        android:clickable="false">
        <LinearLayout
            android:id="@+id/ll_item_meeting"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp"
            android:layout_weight="3"
            android:gravity="center"
            android:orientation="horizontal"
            android:background="@drawable/list_selector_holo_light"
            android:focusable="true"
            android:clickable="true"
            android:visibility="visible">

            <ImageView
71
                android:id="@+id/btn_operation_meeting"
Lee Jaebin committed
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="15dp"
                android:src="@drawable/ic_communication_meeting"
                android:visibility="visible" />

            <TextView
                android:id="@+id/item3_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0.8"
                android:paddingLeft="6dip"
                android:text="@string/remote_support"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="@color/text_select" />

            <ImageView
                android:id="@+id/item3_nextLevel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:layout_alignParentRight="true"
                android:src="@drawable/ic_navigation_next_item"
                android:visibility="visible" />

        </LinearLayout>

        <View
            android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:background="@android:color/darker_gray"/>

        <LinearLayout
            android:id="@+id/ll_item_push_message"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp"
            android:layout_weight="3"
            android:gravity="center"
            android:orientation="horizontal"
            android:background="@drawable/list_selector_holo_light"
            android:focusable="true"
            android:clickable="true"
            android:visibility="visible">

            <ImageView
                android:id="@+id/btn_push_message"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="15dp"
                android:layout_weight="0"
                android:src="@drawable/ic_communication_push_message"
                android:visibility="visible" />

            <TextView
                android:id="@+id/item2_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="15dp"
                android:paddingLeft="6dip"
                android:layout_weight="0.8"
                android:text="@string/push_message_send"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="@color/text_select" />

            <ImageView
                android:id="@+id/item2_nextLevel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="false"
                android:src="@drawable/ic_navigation_next_item"
                android:visibility="visible" />

        </LinearLayout>

        <View
            android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:background="@android:color/darker_gray"/>

        <LinearLayout
            android:id="@+id/ll_item_push_message_list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp"
            android:layout_weight="3"
            android:gravity="center"
            android:orientation="horizontal"
            android:background="@drawable/list_selector_holo_light"
            android:focusable="true"
            android:clickable="true"
            android:visibility="visible">

            <ImageView
                android:id="@+id/btn_push_message_list"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="15dp"
                android:src="@drawable/ic_communication_push_message_list"
                android:visibility="visible" />

            <TextView
                android:id="@+id/push_message_list"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0.8"
                android:layout_toRightOf="@+id/btn_push_message"
                android:paddingLeft="6dip"
                android:layout_marginRight="15dp"
                android:text="@string/push_message_list"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="@color/text_select" />

            <ImageView
                android:id="@+id/item1_nextLevel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="false"
                android:src="@drawable/ic_navigation_next_item"
                android:visibility="visible" />

        </LinearLayout>

        <View
            android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:background="@android:color/darker_gray"/>

Jeong Gilmo committed
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
        <LinearLayout
            android:id="@+id/ll_item_chat"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp"
            android:layout_weight="3"
            android:gravity="center"
            android:orientation="horizontal"
            android:background="@drawable/list_selector_holo_light"
            android:focusable="true"
            android:clickable="true"
            android:visibility="visible">

            <ImageView
                android:id="@+id/btn_chat"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="15dp"
236
                android:src="@drawable/ic_communication_chat_list"
Jeong Gilmo committed
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
                android:visibility="visible" />

            <TextView
                android:id="@+id/chat"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="15dp"
                android:layout_toRightOf="@+id/btn_push_message"
                android:layout_weight="0.8"
                android:paddingLeft="6dip"
                android:text="@string/chat"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="@color/text_select" />

            <ImageView
                android:id="@+id/item4_nextLevel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="false"
                android:src="@drawable/ic_navigation_next_item"
                android:visibility="visible" />

        </LinearLayout>

Lee Jaebin committed
263 264 265
    </LinearLayout>

</LinearLayout>