photo_edit_dialog.xml 1.07 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/photoEditDialog"
    style="@style/Theme_CustomProgressDialog"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/background"
    android:orientation="vertical">

    <WebView
        android:id="@+id/edit_webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ImageButton
        android:id="@+id/edit_page_close_btn"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_gravity="top|right"
        android:layout_marginRight="7dp"
        android:layout_marginTop="7dp"
        android:background="@color/operation_search_button_color"
        android:clickable="true"
        android:elevation="0dp"
        android:src="@drawable/btn_close"
        android:tint="@color/background" />
</FrameLayout>