• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2015 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<ScrollView
18        xmlns:android="http://schemas.android.com/apk/res/android"
19        android:layout_width="match_parent"
20        android:layout_height="match_parent">
21
22    <LinearLayout
23            android:layout_width="match_parent"
24            android:layout_height="wrap_content"
25            android:orientation="vertical">
26
27        <ImageView
28                android:layout_width="150dp"
29                android:layout_height="150dp"
30                android:layout_marginTop="32dp"
31                android:layout_marginBottom="32dp"
32                android:layout_gravity="center_horizontal"
33                android:scaleType="fitCenter"
34                android:src="@drawable/android_robot"
35                android:contentDescription="@string/description_bugdroid_icon" />
36
37        <LinearLayout
38                android:layout_width="match_parent"
39                android:layout_height="wrap_content"
40                android:layout_marginTop="8dp"
41                android:layout_marginStart="8dp"
42                android:layout_marginEnd="8dp"
43                android:orientation="vertical"
44                android:background="@drawable/card"
45                android:elevation="4dp"
46                android:paddingTop="16dp"
47                android:paddingBottom="16dp"
48                android:paddingStart="16dp"
49                android:paddingEnd="16dp">
50
51            <TextView
52                    android:layout_width="wrap_content"
53                    android:layout_height="wrap_content"
54                    android:textAppearance="@android:style/TextAppearance.Material.Headline"
55                    android:text="@string/item_title"/>
56
57            <TextView
58                    android:layout_width="wrap_content"
59                    android:layout_height="wrap_content"
60                    android:textAppearance="@android:style/TextAppearance.Material.Body2"
61                    android:textColor="?android:attr/colorAccent"
62                    android:text="@string/item_price"/>
63
64            <TextView
65                    android:layout_width="wrap_content"
66                    android:layout_height="wrap_content"
67                    android:layout_marginTop="16dp"
68                    android:textAppearance="@android:style/TextAppearance.Material.Body1"
69                    android:textColor="?android:attr/textColorSecondary"
70                    android:text="@string/item_description"/>
71
72        </LinearLayout>
73        <Button style="@android:style/Widget.Material.Button.Colored"
74                android:layout_width="wrap_content"
75                android:layout_height="wrap_content"
76                android:layout_marginTop="8dp"
77                android:layout_marginEnd="4dp"
78                android:layout_gravity="end"
79                android:textColor="?android:attr/textColorPrimaryInverse"
80                android:text="@string/purchase"
81                android:id="@+id/purchase_button"/>
82
83        <TextView
84                android:id="@+id/confirmation_message"
85                android:layout_width="wrap_content"
86                android:layout_height="wrap_content"
87                android:layout_marginTop="16dp"
88                android:paddingStart="16dp"
89                android:paddingEnd="16dp"
90                android:textAppearance="@android:style/TextAppearance.Material.Body2"
91                android:textColor="?android:attr/colorAccent"
92                android:text="@string/purchase_done"
93                android:visibility="gone"/>
94
95        <TextView
96                android:id="@+id/encrypted_message"
97                android:layout_width="wrap_content"
98                android:layout_height="wrap_content"
99                android:layout_marginTop="16dp"
100                android:paddingStart="16dp"
101                android:paddingEnd="16dp"
102                android:textAppearance="@android:style/TextAppearance.Material.Body2"
103                android:textColor="?android:attr/colorAccent"
104                android:text="@string/purchase_done"
105                android:visibility="gone"/>
106    </LinearLayout>
107</ScrollView>