1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2023 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<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:app="http://schemas.android.com/apk/res-auto" 20 android:id="@+id/block_screen_container" 21 android:layout_width="match_parent" 22 android:layout_height="match_parent" 23 android:background="@drawable/empty_input_background"> 24 25 <ImageView 26 android:id="@+id/empty_input_status_icon" 27 android:layout_width="@dimen/empty_input_status_block_icon_width" 28 android:layout_height="@dimen/empty_input_status_block_icon_height" 29 android:contentDescription="@null" 30 android:src="@drawable/ic_empty_input_hdmi" 31 android:layout_marginTop="@dimen/empty_input_status_block_icon_margin_top" 32 app:layout_constraintEnd_toEndOf="parent" 33 app:layout_constraintStart_toStartOf="parent" 34 app:layout_constraintTop_toTopOf="parent" /> 35 36 <TextView 37 android:id="@+id/empty_input_status_title_text" 38 android:layout_width="wrap_content" 39 android:layout_height="wrap_content" 40 android:fontFamily="google-sans-text-regular" 41 android:textColor="@color/empty_input_status_title_text_color" 42 android:textSize="@dimen/empty_input_status_block_title_text_size" 43 android:text="@string/empty_input_status_title_format" 44 android:layout_marginTop="@dimen/empty_input_status_block_title_margin_top" 45 app:layout_constraintEnd_toEndOf="parent" 46 app:layout_constraintStart_toStartOf="parent" 47 app:layout_constraintTop_toBottomOf="@id/empty_input_status_icon"/> 48 49 <TextView 50 android:id="@+id/empty_input_status_info_text" 51 android:layout_width="wrap_content" 52 android:layout_height="wrap_content" 53 android:fontFamily="google-sans-text-regular" 54 android:textColor="@color/empty_input_status_info_text_color" 55 android:textSize="@dimen/empty_input_status_block_info_text_size" 56 android:text="@string/empty_input_status_info" 57 android:layout_marginTop="@dimen/empty_input_status_block_info_margin_top" 58 app:layout_constraintEnd_toEndOf="parent" 59 app:layout_constraintStart_toStartOf="parent" 60 app:layout_constraintTop_toBottomOf="@id/empty_input_status_title_text" /> 61</androidx.constraintlayout.widget.ConstraintLayout> 62