冲刺第八天

昨天任务是完成多条件的查询

今天的任务依旧是完成多条件的查询

困难时查询界面的编写

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">

<!-- 捐赠者姓名列 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="捐赠者:"
android:textStyle="bold" />

<TextView
android:id="@+id/txt_donator"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="" />
</LinearLayout>

<!-- 捐赠金额列 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="捐赠地点:"
android:textStyle="bold" />

<TextView
android:id="@+id/txt_location"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="" />
</LinearLayout>

<!-- 捐赠日期列 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="类别:"
android:textStyle="bold" />

<TextView
android:id="@+id/txt_classes"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="" />
</LinearLayout>

</LinearLayout>
posted @ 2024-05-02 20:21  欧吼吼  阅读(2)  评论(0编辑  收藏  举报