blob: b94cea8ab2418b910baf7360c6a191d8a1ea43bf [file] [log] [blame]
<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>