<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
android:gravity="center_vertical"
|
tools:context=".activities.dashboard.DashboardTodayWidget">
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<ImageView
|
android:id="@+id/dashboard_today_chart"
|
android:layout_width="0dp"
|
android:layout_height="0dp"
|
android:layout_marginHorizontal="15dp"
|
android:layout_marginVertical="5dp"
|
android:gravity="center"
|
app:layout_constraintDimensionRatio="H,1:1"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:scaleType="fitXY" />
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
<TextView
|
android:id="@+id/dashboard_piechart_legend"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginHorizontal="8dp"
|
android:textAlignment="center" />
|
</LinearLayout>
|