四、main.xml配置清单:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://www.easck.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/name"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:text="@string/name"
android:gravity="center"/>
<TextView
android:id="@+id/phone"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:text="@string/phone"
android:gravity="center"/>
<TextView
android:id="@+id/amount"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/amount"
android:gravity="center"/>
</LinearLayout>
<ListView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</ListView>
</LinearLayout>
五、item.xml配置清单:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://www.easck.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/name"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:text="@string/name"
android:gravity="center"/>
<TextView
android:id="@+id/phone"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:text="@string/phone"
android:gravity="center"/>
<TextView
android:id="@+id/amount"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/amount"
android:gravity="center"/>
</LinearLayout>










