86 lines
3.2 KiB
XML
86 lines
3.2 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:id="@+id/frameLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".HomeFragment"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/situation_bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="30dp"
|
|
android:layout_marginRight="20dp"
|
|
android:background="@drawable/frame_style">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:text="現在の状態"
|
|
android:textAlignment="center"
|
|
android:textColor="@color/black"
|
|
android:textSize="25dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/situation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
android:layout_marginTop="10dp"
|
|
android:text="\n降車状態"
|
|
android:textAlignment="center"
|
|
android:textColor="@color/black"
|
|
android:textSize="55dp" />
|
|
|
|
</FrameLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="30dp"
|
|
android:layout_marginRight="20dp"
|
|
android:background="@drawable/frame_style">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:text="切断中"
|
|
android:textAlignment="center"
|
|
android:textColor="@color/black"
|
|
android:textSize="30dp" />
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginTop="50dp"
|
|
android:src="@drawable/bluetooth_drive_fill0_wght400_grad0_opsz24"
|
|
android:textAlignment="center" />
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginTop="50dp"
|
|
android:src="@drawable/close_fill0_wght400_grad0_opsz24"
|
|
android:textAlignment="center" />
|
|
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|