~Twilyappsrcmainreslayout
layoutactivity_main.xml
2 years ago• 126
{}
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolMain"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:titleTextColor="@android:color/white"
android:background="?attr/colorPrimary" >
</androidx.appcompat.widget.Toolbar>
<com.twily.twilyapp.CustomWebView
android:layout_marginTop="?attr/actionBarSize"
android:id="@+id/wvwMain"
android:overScrollMode="never"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<View
android:id="@+id/theDumbViewId"
android:layout_width="1dp"
android:layout_height="1dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
Top
14 283 visits