Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_status"
android:background="@color/theme_background"
android:layout_width="match_parent"
android:layout_height="@dimen/round_button_width"
android:layout_alignParentTop="true">
<TextView
android:textSize="@dimen/theme_12sp"
android:textColor="@color/theme_txt_light"
android:gravity="center"
android:id="@+id/tv_status_left"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/control_status_margin_hor"
android:layout_alignParentStart="true"/>
<TextView
android:textSize="@dimen/theme_16sp"
android:textColor="@color/theme_txt"
android:gravity="center"
android:id="@+id/tv_status_center"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"/>
<TextView
android:textSize="@dimen/theme_12sp"
android:textColor="@color/theme_txt_light"
android:gravity="center"
android:id="@+id/tv_status_right"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="@dimen/control_status_margin_hor"
android:layout_alignParentEnd="true"/>
</RelativeLayout>