react-native-jivo
Version:
React Native jivosite implementation
42 lines (37 loc) • 1.44 kB
text/xml
<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:id="@+id/toolbar"
android:layout_height="54dp"
android:background="#fff"
android:elevation="6dp"
android:paddingLeft="12dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:src="@drawable/ic_arrow_back_black_24dp"
android:id="@+id/back"
android:layout_marginRight="24dp"
android:layout_width="24dp"
android:layout_height="24dp" />
<TextView
android:layout_width="0dp"
android:textSize="17sp"
android:textStyle="bold"
android:layout_weight="1"
android:id="@+id/title"
android:layout_height="wrap_content" />
</LinearLayout>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
</WebView>
</LinearLayout>