blob: 4385a883e30f98bfe2563e6125a41f2ab02eb75f [file] [log] [blame]
cosmohsiehcd192202018-10-23 18:47:10 +08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 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
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:paddingEnd="?android:attr/dialogPreferredPadding"
Arc Wang1efd7872020-04-30 11:46:07 +080021 android:orientation="vertical"
cosmohsiehcd192202018-10-23 18:47:10 +080022 android:background="?android:attr/selectableItemBackground"
23 android:minHeight="?android:attr/listPreferredItemHeightSmall">
24
Arc Wang1efd7872020-04-30 11:46:07 +080025 <LinearLayout
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:orientation="horizontal"
29 android:paddingStart="24dp">
cosmohsiehcd192202018-10-23 18:47:10 +080030
Arc Wang1efd7872020-04-30 11:46:07 +080031 <TextView
32 android:id="@+id/network_request_title_text"
33 android:layout_width="0dp"
34 android:layout_height="wrap_content"
35 android:paddingTop="18dp"
36 android:layout_weight="1"
37 android:textSize="20sp"
38 android:gravity="center_vertical"
39 style="@style/info_label"/>
40
41 <ProgressBar
42 android:id="@+id/network_request_title_progress"
43 style="?android:attr/progressBarStyleSmallTitle"
44 android:layout_width="wrap_content"
45 android:layout_height="wrap_content"
46 android:paddingTop="20dp"
47 android:gravity="center_vertical"
48 android:layout_marginStart="16dip"
49 android:minWidth="32dp"
50 android:text="@string/progress_scanning"/>
51 </LinearLayout>
52
53 <TextView
54 android:id="@+id/network_request_summary_text"
55 android:layout_width="match_parent"
56 android:layout_height="wrap_content"
57 android:paddingStart="24dp"
58 android:paddingTop="18dp"
59 android:textSize="16sp"/>
cosmohsiehcd192202018-10-23 18:47:10 +080060</LinearLayout>