aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/edit_post_preview_fragment.xml
blob: 9925916fd848e817c5b11979cbc7f37324b9208d (plain)
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
<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/white">

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="match_parent">

        <WebView
            android:id="@+id/post_preview_webview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />

        <TextView
            android:id="@+id/post_preview_textview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#FFFFFF"
            android:padding="@dimen/margin_extra_large"
            android:textSize="@dimen/text_sz_large" />
    </FrameLayout>

</ScrollView>