blob: 43312c8c2674830ef46be1b386f3e96ac7d9d07a [file] [log] [blame]
Svetoslav Ganovbc2c3db2013-09-23 15:48:23 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 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
Philip P. Moltmann2f4f2692018-09-20 17:03:23 -070017<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="match_parent"
20 android:layout_marginStart="16dp"
21 android:layout_marginEnd="16dp"
22 android:gravity="center"
23 android:orientation="vertical">
Svetoslav Ganovbc2c3db2013-09-23 15:48:23 -070024
Philip P. Moltmann2f4f2692018-09-20 17:03:23 -070025 <ImageView
26 android:layout_width="120dp"
27 android:layout_height="110dp"
28 android:layout_marginBottom="12dp"
29 android:src="@*android:drawable/ic_print"
30 android:scaleType="fitEnd"
31 android:alpha="0.1"
32 android:tint="?android:colorForeground"
33 android:importantForAccessibility="no" />
34
35 <TextView
36 android:id="@+id/message"
Svetoslav Ganovbc2c3db2013-09-23 15:48:23 -070037 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"
Philip P. Moltmann2f4f2692018-09-20 17:03:23 -070039 android:layout_marginBottom="16dp"
Svetoslav Ganovbc2c3db2013-09-23 15:48:23 -070040 android:gravity="center"
Philip P. Moltmann2f4f2692018-09-20 17:03:23 -070041 android:textAppearance="?android:attr/textAppearanceLarge"
42 android:textColor="?android:attr/textColorSecondary" />
Svetoslav Ganovbc2c3db2013-09-23 15:48:23 -070043
Philip P. Moltmann2f4f2692018-09-20 17:03:23 -070044 <Button
45 android:id="@+id/add_new_service"
46 android:layout_width="wrap_content"
47 android:layout_height="wrap_content"
48 style="?android:attr/borderlessButtonStyle"
49 android:textColor="?android:attr/textColorSecondary"
50 android:text="@string/print_menu_item_add_service"
51 android:visibility="gone" />
Svetoslav Ganovbc2c3db2013-09-23 15:48:23 -070052
Philip P. Moltmann2f4f2692018-09-20 17:03:23 -070053</LinearLayout>