- In Android Studio, open the Android portion of the React Native app. First, we'll need to edit content_main.xml.
- We'll only need a very simple layout for this app. You can edit the file by pressing the Text tab on the bottom to open the source editor and add/replace the following nodes:
<TextView android: layout_width = "wrap_content"android: layout_height = "wrap_content"android: text = "Press the Mail Icon to start the React Native application"android: id = "@+id/textView" /><FrameLayout android: layout_width = "match_parent"android: layout_height = "300dp"android: layout_centerVertical = "true"android: layout_alignParentStart = "true"android: id = "@+id/reactnativeembed"android: background = "#FFF" ></FrameLayout><LinearLayout ...