• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright (C) 2019 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<com.google.android.material.card.MaterialCardView
19    xmlns:android="http://schemas.android.com/apk/res/android"
20    style="@style/ContextualCardStyle"
21    android:layout_width="match_parent"
22    android:layout_height="wrap_content">
23
24    <LinearLayout
25        android:id="@+id/content"
26        android:layout_width="match_parent"
27        android:layout_height="match_parent"
28        android:gravity="left"
29        android:orientation="vertical"
30        android:paddingEnd="@dimen/contextual_card_padding_end"
31        android:paddingTop="@dimen/contextual_deferred_setup_card_padding_top"
32        android:paddingBottom="@dimen/contextual_deferred_setup_card_padding_bottom">
33
34        <ImageView
35            android:id="@android:id/icon"
36            android:layout_width="@dimen/contextual_card_icon_size"
37            android:layout_height="@dimen/contextual_card_icon_size"
38            android:layout_marginStart="@dimen/contextual_card_icon_padding_start"/>
39
40        <TextView
41            android:id="@android:id/title"
42            android:layout_width="wrap_content"
43            android:layout_height="wrap_content"
44            android:layout_marginStart="@dimen/contextual_card_text_padding_start"
45            android:layout_marginTop="@dimen/contextual_deferred_setup_card_title_margin_top"
46            android:ellipsize="end"
47            android:maxLines="2"
48            android:minLines="1"
49            android:textAppearance="@style/TextAppearance.DeferredSetupCardTitle"/>
50
51        <TextView
52            android:id="@android:id/summary"
53            android:layout_width="wrap_content"
54            android:layout_height="wrap_content"
55            android:layout_marginStart="@dimen/contextual_card_text_padding_start"
56            android:layout_marginTop="@dimen/contextual_deferred_setup_card_summary_margin_top"
57            android:ellipsize="end"
58            android:maxLines="2"
59            android:minLines="1"
60            android:textAppearance="@style/TextAppearance.DeferredSetupCardSummary"/>
61
62        <Button
63            android:id="@+id/finish_setup"
64            style="@style/DeferredSetupCardButton"
65            android:layout_width="wrap_content"
66            android:layout_height="wrap_content"
67            android:layout_marginStart="@dimen/contextual_card_text_padding_start"
68            android:layout_marginTop="@dimen/contextual_deferred_setup_card_button_margin_top"
69            android:text="@string/suggestion_button_text"/>
70
71    </LinearLayout>
72</com.google.android.material.card.MaterialCardView>