2024.3.28軟工日報

liuxuechao發表於2024-04-01

學習時間2小時

程式碼量200

<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
tools:context=".MainActivity">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/textViewTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="#000000"
android:layout_marginTop="16dp"
android:text="當前時間: "
android:layout_gravity="center_horizontal" />
<!-- 插入圖片 -->
<ImageView
android:layout_width="match_parent"
android:layout_height="300dp"
android:scaleType="centerCrop"
android:src="@drawable/subway" />

<!-- 按鈕佈局 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"

android:orientation="vertical">

<!-- 第一個按鈕 -->
<Button
android:id="@+id/a1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_gravity="center_horizontal"
android:background="@drawable/a2"

android:onClick="line"
android:text="線路查詢" />

<!-- 第二個按鈕 -->
<Button
android:id="@+id/a2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="站點查詢"
android:onClick="site"
android:background="@drawable/a2"
android:layout_gravity="center_horizontal" />

<!-- 第三個按鈕 -->
<Button
android:id="@+id/a3"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="起點—終點查詢"
android:onClick="start"
android:background="@drawable/a2"
android:layout_gravity="center_horizontal" />

</LinearLayout>

<!-- 其他內容佈局 -->

</LinearLayout>

</ScrollView>
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
tools:context=".line">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="請輸入所查詢的站點名稱"/>

<EditText
android:id="@+id/editTextRouteNumber"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="站點名稱"/>

<Button
android:id="@+id/buttonQuery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="查詢"/>

<!-- Add a TextView to display the query result here -->
<TextView
android:id="@+id/textViewResult1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/black"/>

</LinearLayout>
</ScrollView>

相關文章