安卓开发日记59

所学时间:2小时

代码行数:110

博客园数:1篇

所学知识:继续代码的完成

<?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="match_parent"
android:orientation="vertical"
android:background="@drawable/bg"
android:padding="5dp" >
<TextView
android:id="@+id/tv"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:gravity="center"
android:text="具体信息如下:"
android:textSize="22sp"
android:textColor="#516D2C" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:layout_width="25dp"
android:layout_height="25dp"
android:src="@drawable/id"/>
<TextView
android:id="@+id/c_orderid"
android:layout_weight="1"
android:gravity="center"
android:text="id"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView
android:layout_width="25dp"
android:layout_height="25dp"
android:src="@drawable/user"/>
<TextView
android:id="@+id/c_username"
android:layout_weight="1"
android:gravity="center"
android:text="活动"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView
android:layout_width="25dp"
android:layout_height="25dp"
android:src="@drawable/major"/>
<TextView
android:id="@+id/c_name"
android:layout_weight="1"
android:gravity="center"
android:text="时间"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView
android:layout_width="25dp"
android:layout_height="25dp"
android:src="@drawable/isbn2"/>

<TextView
android:id="@+id/c_price"
android:gravity="center"
android:text="备注"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</LinearLayout>
<ListView
android:id="@+id/lst_orders"
android:layout_width="match_parent"
android:layout_height="537dp">

</ListView>



</LinearLayout>

 

posted @ 2024-06-14 20:36  大虚胖子  阅读(2)  评论(0编辑  收藏  举报