react-native-wordpress-editor
Version:
React Native Wrapper for WordPress Rich Text Editor. The WordPress-Editor is the text editor used in the official WordPress mobile apps to create and edit pages & posts
43 lines (37 loc) • 1.31 kB
text/xml
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin_medium"
android:layout_gravity="center_vertical">
<EditText
android:id="@+id/linkURL"
android:inputType="textUri"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/link_enter_url"
android:imeOptions="actionNext" />
<EditText
android:id="@+id/linkText"
android:inputType="text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/linkURL"
android:hint="@string/link_enter_url_text" />
<Button
android:id="@+id/ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/linkText"
android:layout_alignParentRight="true"
android:layout_marginLeft="@dimen/margin_medium"
android:text="@android:string/ok" />
<Button
android:id="@+id/cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/ok"
android:layout_toLeftOf="@id/ok"
android:text="@android:string/cancel" />
</RelativeLayout>