2024-06-05 07:57:59 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout 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"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:weightSum="20"
|
2024-06-07 04:12:21 +00:00
|
|
|
tools:context=".MainActivity">
|
2024-07-15 15:31:15 +00:00
|
|
|
|
2024-06-05 07:57:59 +00:00
|
|
|
<Space
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:layout_weight="2" />
|
2024-06-05 07:57:59 +00:00
|
|
|
|
2024-06-05 13:48:51 +00:00
|
|
|
|
2024-07-15 15:31:15 +00:00
|
|
|
<!-- ID作成のレイアウト-->
|
2024-06-05 13:48:51 +00:00
|
|
|
<LinearLayout
|
2024-06-05 07:57:59 +00:00
|
|
|
android:layout_width="wrap_content"
|
2024-06-05 13:48:51 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="3"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="2">
|
2024-06-05 07:57:59 +00:00
|
|
|
|
2024-06-05 13:48:51 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageUuid"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:src="@drawable/checked_image" />
|
2024-06-05 07:57:59 +00:00
|
|
|
|
2024-06-05 13:48:51 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/creatUUID"
|
|
|
|
android:layout_width="99dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="left"
|
|
|
|
android:text="ID作成"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:textSize="50dp" />
|
2024-06-05 07:57:59 +00:00
|
|
|
|
2024-06-05 13:48:51 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2024-07-15 15:31:15 +00:00
|
|
|
<!-- セットアップのレイアウト-->
|
2024-06-05 13:48:51 +00:00
|
|
|
<LinearLayout
|
2024-06-05 07:57:59 +00:00
|
|
|
android:layout_width="wrap_content"
|
2024-06-05 13:48:51 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="3"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="2">
|
2024-06-05 07:57:59 +00:00
|
|
|
|
2024-06-05 13:48:51 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageSetup"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:src="@drawable/checked_image" />
|
2024-06-05 13:48:51 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/setUp"
|
|
|
|
android:layout_width="99dp"
|
|
|
|
android:layout_height="wrap_content"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="left"
|
2024-06-05 13:48:51 +00:00
|
|
|
android:text="セットアップ"
|
|
|
|
android:textSize="40dp"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!-- フォームのURLのレイアウト-->
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="3"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="2">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageFormURL"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:src="@drawable/checked_image" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/formURL"
|
|
|
|
android:layout_width="99dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2024-06-05 13:48:51 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="left"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:text="GoogleformのURL"
|
|
|
|
android:textSize="40dp"
|
|
|
|
android:textStyle="bold" />
|
2024-06-05 13:48:51 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2024-07-07 13:08:44 +00:00
|
|
|
<Space
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:layout_weight="2" />
|
2024-07-07 13:08:44 +00:00
|
|
|
|
2024-06-05 13:48:51 +00:00
|
|
|
|
2024-07-15 15:31:15 +00:00
|
|
|
<!-- ルート表示のレイアウト-->
|
2024-06-05 13:48:51 +00:00
|
|
|
<LinearLayout
|
2024-06-14 01:16:46 +00:00
|
|
|
android:layout_width="400dp"
|
2024-06-05 13:48:51 +00:00
|
|
|
android:layout_height="0dp"
|
2024-06-14 01:16:46 +00:00
|
|
|
android:layout_gravity="center"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:layout_weight="3"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="2">
|
2024-06-05 13:48:51 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageRoot"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:src="@drawable/pin" />
|
2024-06-05 13:48:51 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/root"
|
|
|
|
android:layout_width="99dp"
|
|
|
|
android:layout_height="wrap_content"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:layout_gravity="center"
|
2024-06-05 13:48:51 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="left"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:text="ルート表示"
|
|
|
|
android:textSize="40dp"
|
|
|
|
android:textStyle="bold" />
|
2024-06-05 13:48:51 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
2024-06-05 07:57:59 +00:00
|
|
|
|
2024-07-15 15:31:15 +00:00
|
|
|
<!-- 提出状況のレイアウト-->
|
2024-06-14 01:16:46 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="350dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_gravity="center"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:layout_weight="3"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="2">
|
2024-06-14 01:16:46 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageSubmission"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:src="@drawable/submission" />
|
2024-06-14 01:16:46 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/submission"
|
|
|
|
android:layout_width="99dp"
|
|
|
|
android:layout_height="wrap_content"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:layout_gravity="center"
|
2024-06-14 01:16:46 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="left"
|
2024-07-15 15:31:15 +00:00
|
|
|
android:text="提出状況"
|
|
|
|
android:textSize="40dp"
|
|
|
|
android:textStyle="bold" />
|
2024-06-14 01:16:46 +00:00
|
|
|
</LinearLayout>
|
2024-06-05 07:57:59 +00:00
|
|
|
|
2024-06-05 13:48:51 +00:00
|
|
|
|
2024-06-05 07:57:59 +00:00
|
|
|
</LinearLayout>
|