Created
October 27, 2015 13:52
-
-
Save LuizGadao/85f89c9b7c01587b0ad3 to your computer and use it in GitHub Desktop.
support layout for embend webview in Fragment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<LinearLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical" | |
tools:showIn="@layout/activity_main" | |
tools:context=".MainActivityFragment"> | |
<WebView | |
android:layout_width="match_parent" | |
android:layout_height="188dp" | |
android:id="@+id/webView" | |
android:layout_gravity="center" | |
/> | |
<FrameLayout | |
android:id="@+id/customViewContainer" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:visibility="gone" | |
/> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment