2020-01-31 21:58:36 +00:00

31 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradientbackground"
tools:context=".ChargingActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="32dp">
<TextView
android:id="@+id/charge_state"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Car charging"
android:textSize="32dp"></TextView>
<TextView
android:id="@+id/charge_time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Time Remaining"
android:textSize="32dp"></TextView>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>