1<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:id="@+id/container" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 tools:context="com.android.carrierdefaultapp.CaptivePortalLoginActivity" 7 tools:ignore="MergeRootFrame"> 8 <LinearLayout 9 android:layout_width="match_parent" 10 android:layout_height="match_parent" 11 android:orientation="vertical" > 12 13 <TextView 14 android:id="@+id/url_bar" 15 android:layout_width="match_parent" 16 android:layout_height="wrap_content" 17 android:textSize="20sp" 18 android:singleLine="true" /> 19 20 <ProgressBar 21 android:id="@+id/progress_bar" 22 android:layout_width="match_parent" 23 android:layout_height="wrap_content" 24 style="?android:attr/progressBarStyleHorizontal" /> 25 26 <WebView 27 android:id="@+id/webview" 28 android:layout_width="match_parent" 29 android:layout_height="match_parent" 30 android:layout_alignParentBottom="false" 31 android:layout_alignParentRight="false" /> 32 33</LinearLayout> 34</FrameLayout> 35