forked from github/szkolny
22 lines
691 B
XML
22 lines
691 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!--
|
||
|
~ Copyright (c) Kuba Szczodrzyński 2020-3-1.
|
||
|
-->
|
||
|
|
||
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp"
|
||
|
android:gravity="center"
|
||
|
android:textSize="18sp"
|
||
|
android:textColor="?android:textColorSecondary"
|
||
|
android:textStyle="italic"
|
||
|
android:text="Nie ma ocen w tym semestrze."/>
|
||
|
</LinearLayout>
|
||
|
</layout>
|