blob: 9bfebf106b8b537dda1f2ce821c570901221fd5c [file] [log] [blame]
cretin450328b872015-01-15 16:04:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2015 The CyanogenMod Project
Joey Rizzolid1331882016-12-29 17:28:02 +01004 Copyright (C) 2017 The LineageOS Project
cretin450328b872015-01-15 16:04:44 -08005
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
cretin45716ffa82015-01-21 15:55:03 -080018<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 android:orientation="vertical"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent">
cretin450328b872015-01-15 16:04:44 -080022
Joey Rizzolid1331882016-12-29 17:28:02 +010023 <include layout="@layout/header_condensed" />
cretin450328b872015-01-15 16:04:44 -080024
cretin45716ffa82015-01-21 15:55:03 -080025 <FrameLayout android:id="@+id/page"
26 android:layout_width="match_parent"
27 android:layout_height="0dp"
28 android:layout_weight="1">
cretin450328b872015-01-15 16:04:44 -080029
cretin45716ffa82015-01-21 15:55:03 -080030 <ScrollView android:layout_width="match_parent"
31 android:layout_height="match_parent"
32 android:fillViewport="true">
cretin450328b872015-01-15 16:04:44 -080033
cretin45716ffa82015-01-21 15:55:03 -080034 <LinearLayout
35 android:id="@+id/page_view"
36 android:orientation="vertical"
37 android:layout_width="match_parent"
38 android:layout_height="wrap_content"
cretin45f654deb2015-04-14 17:28:37 -070039 style="@style/PageContent"
40 android:visibility="gone">
cretin45716ffa82015-01-21 15:55:03 -080041
42 <TextView
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 style="@style/PageSummaryText"
46 android:textSize="15sp"
47 android:paddingLeft="@dimen/content_margin_left"
48 android:paddingRight="@dimen/content_margin_right"
49 android:paddingBottom="@dimen/summary_margin_bottom"
50 android:text="@string/choose_data_sim_summary" />
51
52 <include layout="@layout/divider" />
53
54 </LinearLayout>
55 </ScrollView>
cretin4562db4522015-08-18 14:02:22 -070056
57 <ProgressBar
58 android:id="@+id/progress"
59 style="?android:attr/progressBarStyleHorizontal"
60 android:indeterminateOnly="true"
61 android:layout_width="match_parent"
62 android:layout_height="8dp"
63 android:layout_gravity="top"
64 android:visibility="gone"/>
cretin45716ffa82015-01-21 15:55:03 -080065 </FrameLayout>
66</LinearLayout>