Files
clinx02-androidpebble/app/src/main/res/layout/fragment_batt.xml
2024-04-13 22:00:30 +01:00

31 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".FragmentOsdBaseClass">
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/okBackgroundColor"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/battery_history"
android:textColor="@color/okTextColor" />
<com.github.mikephil.charting.charts.LineChart
android:id="@+id/battLineChart"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</com.github.mikephil.charting.charts.LineChart>
</androidx.appcompat.widget.LinearLayoutCompat>
</FrameLayout>