blob: d81849d5923d2b53ac55e0cfbf8ea9a868359520 [file] [log] [blame]
Fan Zhang28691572016-03-23 15:31:08 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2016 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<ScrollView
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent">
22 <LinearLayout
23 android:layout_width="match_parent"
24 android:layout_height="match_parent"
25 android:orientation="vertical">
26 <TextView
27 android:layout_width="match_parent"
28 android:layout_height="wrap_content"
29 android:paddingEnd="16dp"
30 android:paddingStart="16dp"
31 android:paddingTop="16dp"
32 android:text="@string/support_escalation_title"
33 android:textColor="@color/material_grey_900"
34 android:textSize="16sp"/>
35 <LinearLayout
36 android:id="@+id/escalation_options"
37 android:layout_width="match_parent"
38 android:layout_height="wrap_content"
39 android:orientation="horizontal"
40 android:paddingEnd="8dp"
41 android:paddingStart="8dp">
42 <include
43 android:id="@+id/escalation_by_phone"
44 layout="@layout/support_escalation_card"/>
45 <include
46 android:id="@+id/escalation_by_email"
47 layout="@layout/support_escalation_card"/>
48 </LinearLayout>
49 <View
50 android:layout_width="match_parent"
51 android:layout_height="1dp"
52 android:background="?android:attr/listDivider"/>
53 <include
54 android:id="@+id/forum_tile"
55 layout="@layout/support_tile"/>
56 <include
57 android:id="@+id/article_tile"
58 layout="@layout/support_tile"/>
59 <View
60 android:layout_width="match_parent"
61 android:layout_height="1dp"
62 android:background="?android:attr/listDivider"/>
63 <include
64 android:id="@+id/feedback_tile"
65 layout="@layout/support_tile"/>
66 </LinearLayout>
67</ScrollView>