2020-10-10 16:45:34 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-10-03 02:43:42 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2020-10-10 16:45:34 +02:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-10-03 02:43:42 +02:00
|
|
|
android:gravity="center_horizontal"
|
2020-10-10 16:45:34 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/um25_text_voltage"
|
2021-10-03 02:43:42 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:textColor="@android:color/holo_green_dark"
|
|
|
|
android:textSize="@dimen/um25_value_text_size" />
|
2020-10-10 16:45:34 +02:00
|
|
|
|
2021-10-03 02:43:42 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2020-10-10 16:45:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-10-03 02:43:42 +02:00
|
|
|
android:layout_margin="10dp"
|
2020-10-10 16:45:34 +02:00
|
|
|
android:gravity="center_horizontal"
|
2021-10-03 02:43:42 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/um25_text_current"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@android:color/holo_red_dark"
|
|
|
|
android:textSize="@dimen/um25_value_text_size" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/um25_text_current_sum"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@android:color/holo_red_dark"
|
|
|
|
android:textSize="@dimen/um25_value_text_size_small" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center_horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/um25_text_wattage"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="@dimen/um25_value_text_size" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/um25_text_wattage_sum"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="@dimen/um25_value_text_size_small" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-10-10 16:45:34 +02:00
|
|
|
|
|
|
|
<TextView
|
2021-10-03 02:43:42 +02:00
|
|
|
android:id="@+id/um25_text_charge_duration"
|
|
|
|
android:layout_width="wrap_content"
|
2020-10-10 16:45:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-10-03 02:43:42 +02:00
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="@dimen/um25_value_text_size" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/um25_text_temperature"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="@dimen/um25_value_text_size_small"
|
|
|
|
android:layout_marginEnd="20dp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/um25_cable_resistance"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="@dimen/um25_value_text_size_small" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-10-10 16:45:34 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|