aboutsummaryrefslogtreecommitdiff
path: root/libs/editor/example/src/main/res/layout/activity_example.xml
blob: b94cea8ab2418b910baf7360c6a191d8a1ea43bf (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                tools:context="org.wordpress.android.editor.example.MainExampleActivity">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Editor - Post 1"
        android:id="@+id/new_editor_post_1"
        android:layout_alignParentTop="true"
        android:layout_marginTop="32dp"
        android:layout_centerHorizontal="true"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Editor - Empty Post"
        android:id="@+id/new_editor_post_empty"
        android:layout_marginTop="32dp"
        android:layout_centerHorizontal="true"
        android:layout_below="@id/new_editor_post_1"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Legacy Editor - Post 1 - Local Draft"
        android:id="@+id/legacy_editor_post_1_local"
        android:layout_marginTop="32dp"
        android:layout_centerHorizontal="true"
        android:layout_below="@id/new_editor_post_empty"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Legacy Editor - Post 1 - Remote"
        android:id="@+id/legacy_editor_post_1_remote"
        android:layout_marginTop="32dp"
        android:layout_centerHorizontal="true"
        android:layout_below="@id/legacy_editor_post_1_local"/>


</RelativeLayout>