Created
June 1, 2016 17:11
-
-
Save dptsolutions/6f48e2b68d99be05a5fac1d34b542926 to your computer and use it in GitHub Desktop.
This file contains 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
<FrameLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<!--Below FrameLayout doesn't need to be a FrameLayout. Any ViewGroup will do --> | |
<FrameLayout | |
android:id="@+id/content" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
...other attrs go here | |
android:visibility="gone"> | |
<!--Content Views go here --> | |
</FrameLayout> | |
<WebView | |
android:id="@+id/splash" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" /> | |
</FrameLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment