1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
5 |
android:layout_width="match_parent"
|
|
|
6 |
android:layout_height="match_parent"
|
|
|
7 |
tools:context=".MainActivity">
|
|
|
8 |
|
|
|
9 |
<WebView
|
|
|
10 |
android:id="@+id/webview"
|
|
|
11 |
android:layout_alignParentTop="true"
|
|
|
12 |
android:layout_alignParentLeft="true"
|
|
|
13 |
android:layout_width="match_parent"
|
|
|
14 |
android:layout_height="match_parent"
|
|
|
15 |
android:visibility="invisible"/>
|
|
|
16 |
|
|
|
17 |
<!--
|
|
|
18 |
<ImageView
|
|
|
19 |
android:id="@+id/imageLoading1"
|
|
|
20 |
android:layout_alignParentTop="true"
|
|
|
21 |
android:layout_alignParentLeft="true"
|
|
|
22 |
android:layout_width="match_parent"
|
|
|
23 |
android:layout_height="match_parent"
|
|
|
24 |
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
25 |
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
26 |
android:layout_marginTop="@dimen/activity_vertical_margin"
|
|
|
27 |
android:layout_marginBottom="@dimen/activity_vertical_margin"
|
|
|
28 |
android:gravity="center"
|
|
|
29 |
-->
|
|
|
30 |
|
|
|
31 |
android:src="@mipmap/logo"/>
|
|
|
32 |
|
|
|
33 |
</RelativeLayout>
|