148 lines
4.5 KiB
XML
148 lines
4.5 KiB
XML
<?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"
|
|
tools:context=".MainActivity">
|
|
|
|
<Space
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="2" />
|
|
|
|
|
|
<!-- タイトルのレイアウト-->
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="400dp"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="4"
|
|
android:orientation="horizontal"
|
|
android:weightSum="3">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageTitle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="@drawable/app_icon" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="99dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="2"
|
|
android:gravity="left"
|
|
android:text="OPLOGY"
|
|
android:textSize="60dp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<Space
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="2" />
|
|
|
|
|
|
<!-- ルート表示のレイアウト-->
|
|
<LinearLayout
|
|
android:layout_width="400dp"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="3"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageRoot"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="@drawable/pin" />
|
|
|
|
<TextView
|
|
android:id="@+id/root"
|
|
android:layout_width="99dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:gravity="left"
|
|
android:text="ルート表示"
|
|
android:textSize="40dp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<Space
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.5" />
|
|
|
|
|
|
<!-- 提出状況のレイアウト-->
|
|
<LinearLayout
|
|
android:layout_width="350dp"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="3"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageSubmission"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="@drawable/submission" />
|
|
|
|
<TextView
|
|
android:id="@+id/submission"
|
|
android:layout_width="99dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:gravity="left"
|
|
android:text="提出状況"
|
|
android:textSize="40dp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<Space
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.5" />
|
|
|
|
<!-- 諸々の設定のレイアウト-->
|
|
<LinearLayout
|
|
android:layout_width="350dp"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="3"
|
|
android:orientation="horizontal"
|
|
android:weightSum="2">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageSetting"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="@drawable/setting" />
|
|
|
|
<TextView
|
|
android:id="@+id/setting"
|
|
android:layout_width="99dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:gravity="left"
|
|
android:text="設定"
|
|
android:textSize="40dp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |