ac_html_webview.xml 9.6 KB
Newer Older
Lee Jaebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:id="@+id/frameTopbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/app_color"
        android:minHeight="50dp" >

15
        <ImageButton
Lee Jaebin committed
16 17 18 19 20 21 22 23 24
            android:id="@+id/closeBtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginLeft="5dp"
            android:background="@drawable/btn_close"
            android:contentDescription="@string/cont_desc" />

25
        <ImageButton
Lee Jaebin committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
            android:id="@+id/btn_link_original_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:layout_toRightOf="@+id/closeBtn"
            android:background="@drawable/btn_before_back"
            android:visibility="gone" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true">

            <TextView
                android:id="@+id/title"
                style="@style/DialogToolBarTitle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:ellipsize="end"
                android:textColor="@color/text_dialog"
                android:gravity="center"
                android:visibility="gone"
                android:textStyle="bold" />
        </LinearLayout>
52
        <ImageButton
53
            android:id="@+id/btn_operation_home"
Lee Jaebin committed
54 55 56 57 58
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginLeft="15dp"
59
            android:background="@drawable/ic_operation_home"
60 61 62
            android:contentDescription="@string/cont_desc"
            android:visibility="gone" />

Lee Jaebin committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
        <ImageButton
            android:id="@+id/btn_remote_pause"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="5dp"
            android:background="@drawable/btn_remote_pause"
            android:visibility="gone" />

        <ImageButton
            android:id="@+id/btn_remote_start"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:background="@drawable/btn_remote_start"
            android:visibility="gone" />

82
        <ImageButton
Lee Jaebin committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
            android:id="@+id/btn_history_list"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="20dp"
            android:layout_toRightOf="@+id/closeBtn"
            android:background="@drawable/btn_history_list" />

        <LinearLayout
            android:id="@+id/historyLayout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_toLeftOf="@+id/menuLayout"
            android:layout_marginRight="10dp" >
98
            <ImageButton
Lee Jaebin committed
99 100 101 102 103 104 105
                android:id="@+id/btnWebBack"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="5dp"
                android:background="@drawable/btn_history_back"
                android:contentDescription="@string/cont_desc" />

106
            <ImageButton
Lee Jaebin committed
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
                android:id="@+id/btnWebForward"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/btn_history_forward"
                android:contentDescription="@string/cont_desc" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/menuLayout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="5dp" >

            <ImageButton
                android:id="@+id/btn_reload"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:background="@drawable/btn_reload"
                android:contentDescription="@string/list"
                android:visibility="gone" />

            <ImageButton
132 133 134 135 136
                android:id="@+id/btn_print"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:layout_weight="1"
137
                android:background="@drawable/btn_operation_print_white"
138
                android:contentDescription="@string/print"
139 140
                android:scaleX="0.6"
                android:scaleY="0.6"
141 142 143
                android:visibility="gone" />

            <ImageButton
Lee Jaebin committed
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
                android:id="@+id/btn_download"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:background="@drawable/btn_download"
                android:contentDescription="@string/list"
                android:visibility="gone" />

            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp" >
                <ImageButton
                    android:id="@+id/btn_sub_menu"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:contentDescription="@string/list"
                    android:background="@drawable/btn_view_sub_menu" />
            </RelativeLayout>

            <ImageButton
                android:id="@+id/btn_promote"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="10dp"
                android:background="@drawable/btn_promote"
                android:contentDescription="@string/list"
                android:visibility="gone" />

            <ImageButton
                android:id="@+id/btn_exitMeeting"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/btn_exit"
                android:contentDescription="@string/list"
                android:visibility="gone" />
            <ImageButton
                android:id="@+id/btn_add_scene"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
184
                android:background="@drawable/ic_operation_add_scene"
Lee Jaebin committed
185 186 187 188 189 190 191
                android:layout_marginRight="10dp"
                android:visibility="gone" />

            <ImageButton
                android:id="@+id/btn_show_task_list"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
192
                android:background="@drawable/ic_operation_task_list"
Lee Jaebin committed
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
                android:layout_marginRight="10dp"
                android:visibility="gone" />
        </LinearLayout>

    </RelativeLayout>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="vertical" >

        <WebView
            android:id="@+id/webView2"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="0dp" />

        <ProgressBar
            android:id="@+id/refresh_prog"
            style="?android:attr/progressBarStyleLarge"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:gravity="center"
            android:visibility="gone" />

        <ImageButton
            android:id="@+id/btnWebClose"
            android:layout_width="70dp"
            android:layout_height="15dp"
            android:layout_gravity="center|top"
            android:background="@drawable/btn_webview_close"
            android:contentDescription="@string/cont_desc" />

        <TextView
            android:id="@+id/txt_meeting_participant"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp"
            android:layout_marginRight="10dp"
            android:background="@drawable/frame"
            android:padding="8dp"
            android:layout_gravity="right|top"
            android:text=""
            android:textSize="15sp"
            android:visibility="gone"
            android:maxLines="1" />

    </FrameLayout>

</LinearLayout>