View difference between Paste ID: vRsu3mLq and HEad4u6R
SHOW: | | - or go back to the newest paste.
1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout 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
    xmlns:ads="http://schemas.android.com/apk/res-auto"
6
    android:layout_width="match_parent"
7
    android:layout_height="match_parent"
8
    android:orientation="vertical"
9
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
10-
    tools:context="com.kampuskoding.browsersederhana.MainActivity"
10+
    tools:context="com.catholic.instagram.MainActivity"
11
    tools:showIn="@layout/activity_main">
12
13
    <ProgressBar
14
        style="@android:style/Widget.Material.Light.ProgressBar.Horizontal"
15
        android:layout_width="match_parent"
16
        android:layout_height="wrap_content"
17
        android:id="@+id/progressBar4" />
18
    <WebView
19
        android:id="@+id/webv"
20
        android:layout_width="match_parent"
21
        android:layout_height="match_parent"
22
        android:layout_weight="1"
23
        android:layout_centerHorizontal="true"  >
24
    </WebView>
25
26
    <com.google.android.gms.ads.AdView
27
        android:id="@+id/adView"
28
        android:layout_width="match_parent"
29
        android:layout_height="1dp"
30
        ads:adSize="BANNER"
31
        ads:adUnitId="@string/admob_publisher_id"
32
        android:layout_alignParentBottom="true"/>
33
34
</LinearLayout>