2024-04-04 21:28:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-08-28 10:36:25 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-04-04 21:28:04 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_vertical"
|
2024-08-28 10:36:25 +02:00
|
|
|
tools:context=".activities.dashboard.AbstractDashboardWidget">
|
2024-04-04 21:28:04 +02:00
|
|
|
|
|
|
|
<RelativeLayout
|
2024-08-28 10:36:25 +02:00
|
|
|
android:id="@+id/card_layout"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:orientation="vertical"
|
2024-08-28 10:36:25 +02:00
|
|
|
tools:ignore="UselessParent">
|
2024-04-04 21:28:04 +02:00
|
|
|
|
|
|
|
<ImageView
|
2024-08-28 10:36:25 +02:00
|
|
|
android:id="@+id/gauge_bar"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:layout_width="150dp"
|
|
|
|
android:layout_height="75dp"
|
|
|
|
android:layout_centerHorizontal="true"
|
2024-08-28 10:36:25 +02:00
|
|
|
android:scaleType="fitStart" />
|
2024-04-04 21:28:04 +02:00
|
|
|
|
|
|
|
<TextView
|
2024-08-28 10:36:25 +02:00
|
|
|
android:id="@+id/gauge_value"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
2024-08-28 10:36:25 +02:00
|
|
|
android:layout_marginTop="28dp"
|
|
|
|
android:text="@string/stats_empty_value"
|
|
|
|
android:textSize="30sp" />
|
2024-04-04 21:28:04 +02:00
|
|
|
|
|
|
|
<TextView
|
2024-08-28 10:36:25 +02:00
|
|
|
android:id="@+id/gauge_label"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2024-08-28 10:36:25 +02:00
|
|
|
android:layout_below="@+id/gauge_value"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:layout_centerHorizontal="true"
|
2024-08-28 10:36:25 +02:00
|
|
|
android:text="@string/no_data" />
|
2024-04-04 21:28:04 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2024-08-28 10:36:25 +02:00
|
|
|
</LinearLayout>
|