政策查詢系統(安卓)6

平安喜乐×發表於2024-06-16

編寫安卓的介面

<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg">

<!-- 使用垂直線性佈局 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<!-- 標題 -->
<TextView
android:id="@+id/TitleText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:text="科技政策一點通"
android:gravity="center"
android:textStyle="italic"
android:textColor="@color/white"
android:textSize="30sp" />
<!-- 按鈕區域 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<!-- 政策分類按鈕 -->
<Button
android:id="@+id/categoryButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_margin="10dp"
android:padding="6dp"
android:text="政策分類"
android:textColor="@color/black"
android:textSize="24sp"
android:background="@drawable/translucent_button" />
<!-- 政策概覽按鈕 -->
<Button
android:id="@+id/overviewButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_margin="10dp"
android:padding="6dp"
android:text="政策查詢"
android:textColor="@color/black"
android:textSize="24sp"
android:background="@drawable/translucent_button" />
</LinearLayout>
<!-- 政策概覽介面 -->
<LinearLayout
android:id="@+id/LL1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="visible">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<!-- 輸入框 -->
<AutoCompleteTextView
android:id="@+id/searchInput"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:hint="請輸入政策關鍵詞"
android:padding="10dp"
android:textSize="24sp"
android:background="@drawable/translucent_edit"
android:completionThreshold="1" />
<!-- 查詢按鈕 -->
<Button
android:id="@+id/searchButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:padding="6dp"
android:text="查詢"
android:textColor="@color/black"
android:textSize="24sp"
android:background="@drawable/translucent_button" />
</LinearLayout>
<!-- 政策名稱列表 -->
<ListView
android:id="@+id/policyListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:textSize="18sp"
/>
</LinearLayout>
<!-- 政策分類介面 -->
<LinearLayout
android:id="@+id/LL2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
</LinearLayout>
<!-- 查詢內容展示介面,包裝在 ScrollView 中 -->
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/resultTextView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:padding="0dp"
android:textColor="#000000"
android:textSize="20sp" />
<!-- 顯示查詢結果的 TextView -->
<TextView
android:id="@+id/resultTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:padding="5dp"
android:textColor="#000000"
android:textSize="20sp"/>
</LinearLayout>
</ScrollView>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">

<TextView
android:id="@+id/policyDetailTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp" />
</LinearLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>

相關文章