UNPKG

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

83 lines (74 loc) 3.64 kB
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:editor="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="@android:color/white" tools:context="org.wordpress.android.editor.EditorFragment"> <include layout="@layout/editor_webview" android:id="@+id/webview" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_above="@+id/format_bar"/> <ScrollView android:id="@+id/sourceview" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@android:color/white" android:orientation="vertical" android:layout_above="@id/format_bar" android:fillViewport="true" android:visibility="gone"> <LinearLayout android:id="@+id/post_content_wrapper" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> <org.wordpress.android.editor.SourceViewEditText android:id="@+id/sourceview_title" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/sourceview_side_margin" android:layout_marginRight="@dimen/sourceview_side_margin" android:layout_marginTop="@dimen/sourceview_top_margin" android:layout_marginBottom="@dimen/sourceview_title_bottom_margin" android:background="@null" android:textSize="24sp" android:textColorHint="@color/sourceview_placeholder_text" android:inputType="textCapSentences|textAutoCorrect" android:imeOptions="flagNoExtractUi"/> <View android:id="@+id/sourceview_horizontal_divider" android:layout_width="fill_parent" android:layout_height="@dimen/format_bar_horizontal_divider_height" android:layout_marginLeft="@dimen/sourceview_side_margin" android:layout_marginRight="@dimen/sourceview_side_margin" style="@style/DividerSourceView"/> <org.wordpress.android.editor.SourceViewEditText android:id="@+id/sourceview_content" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1" android:gravity="top" android:layout_marginLeft="@dimen/sourceview_side_margin" android:layout_marginRight="@dimen/sourceview_side_margin" android:layout_marginTop="@dimen/sourceview_top_margin" android:background="@null" android:textSize="16sp" android:maxLength="10000000" android:textColorHint="@color/sourceview_placeholder_text" android:inputType="textMultiLine|textCapSentences|textNoSuggestions" android:lineSpacingExtra="4dp" android:imeOptions="flagNoExtractUi" android:typeface="monospace"/> </LinearLayout> </ScrollView> <include layout="@layout/format_bar" android:id="@+id/format_bar" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_alignParentBottom="true"/> </RelativeLayout>