24 lines
753 B
XML
24 lines
753 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:id="@+id/backgroundborder"
|
||
|
|
android:layout_marginHorizontal="3dp"
|
||
|
|
android:paddingVertical="6dp"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:gravity="center"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:id="@+id/weekdays"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:layout_marginHorizontal="7dp"
|
||
|
|
android:fontFamily="@font/inter_500"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="MON">
|
||
|
|
|
||
|
|
</TextView>
|
||
|
|
|
||
|
|
</LinearLayout>
|