2019-12-22 15:36:57 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
~ Copyright (c) Kuba Szczodrzyński 2019-12-22.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:layout_margin="8dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Hello world"/>
|
|
|
|
|
2020-03-04 19:02:50 +01:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/noData"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:text="@string/card_grades_no_data"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
2019-12-22 15:36:57 +01:00
|
|
|
</LinearLayout>
|
2020-03-04 19:02:50 +01:00
|
|
|
</layout>
|