blob: 9181ed8a20bc98afd93e7bdf81432ca686086797 [file] [log] [blame]
Stuart Scottbe903412014-07-24 19:22:06 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Qingxi Li0caad2f2018-01-05 10:52:42 -080017<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
Stuart Scottbe903412014-07-24 19:22:06 -070019 android:layout_width="match_parent"
20 android:layout_height="match_parent"
21 android:orientation="vertical" >
Stuart Scottbe903412014-07-24 19:22:06 -070022 <ScrollView
23 android:layout_width="match_parent"
24 android:layout_height="0dip"
Jin Dongc0856942018-08-24 16:24:53 +080025 android:layout_marginStart="@dimen/reset_network_margin_start"
26 android:layout_marginEnd="@dimen/reset_network_margin_end"
Stuart Scottbe903412014-07-24 19:22:06 -070027 android:layout_marginTop="12dp"
28 android:layout_weight="1">
Qingxi Li0caad2f2018-01-05 10:52:42 -080029 <LinearLayout
30 android:layout_width="match_parent"
Stuart Scottbe903412014-07-24 19:22:06 -070031 android:layout_height="wrap_content"
32 android:orientation="vertical">
Stuart Scottbe903412014-07-24 19:22:06 -070033 <TextView
34 android:layout_width="match_parent"
35 android:layout_height="wrap_content"
36 android:textSize="18sp"
Sanket Padawebf91bc62015-06-22 19:46:28 -070037 android:textDirection="locale"
Stuart Scottbe903412014-07-24 19:22:06 -070038 android:text="@string/reset_network_desc" />
Hunter Knepshielde8e86e62019-03-14 15:04:36 -070039 <include layout="@layout/reset_esim_checkbox"/>
Stuart Scottbe903412014-07-24 19:22:06 -070040 </LinearLayout>
Stuart Scottbe903412014-07-24 19:22:06 -070041 </ScrollView>
Stuart Scottbe903412014-07-24 19:22:06 -070042 <Spinner android:id="@+id/reset_network_subscription"
43 android:layout_gravity="center_horizontal"
Raff Tsaia5b25df2019-04-26 10:55:48 +080044 android:layout_marginTop="20dp"
Stuart Scottbe903412014-07-24 19:22:06 -070045 android:layout_width="wrap_content"
46 android:layout_height="wrap_content" />
Stuart Scottbe903412014-07-24 19:22:06 -070047 <Button
48 android:id="@+id/initiate_reset_network"
Raff Tsaia5b25df2019-04-26 10:55:48 +080049 android:layout_gravity="end"
50 android:layout_marginEnd="@dimen/suc_customization_button_margin_end"
51 android:layout_marginTop="20dp"
52 android:layout_marginBottom="12dp"
Stuart Scottbe903412014-07-24 19:22:06 -070053 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
55 android:text="@string/reset_network_button_text"
Raff Tsaia5b25df2019-04-26 10:55:48 +080056 android:gravity="center"
57 style="@style/ActionPrimaryButton"/>
Stuart Scottbe903412014-07-24 19:22:06 -070058</LinearLayout>