Android ListView資料繫結顯示的三種解決方案

來源:互聯網
上載者:User

首先,建立一個用於顯示一個item的layout,名為item.xml

複製代碼 代碼如下:<?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="horizontal" >

<TextView
android:id="@+id/name"
android:layout_width="120dp"
android:layout_height="wrap_content" />

<TextView
android:id="@+id/phone"
android:layout_width="150dp"
android:layout_height="wrap_content" />

<TextView
android:id="@+id/amount"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

</LinearLayout>

然後,在main.xml中,添加一個ListView資料顯示控制項,添加id名稱為listview

接下來便是進行資料的綁定,總共分為三種方法:

複製代碼 代碼如下: private void show1() {
List persons = ps.getScollData(0, 10);
List<HashMap<String, Object>> data = new ArrayList<HashMap<String, Object>>();
for (Person person : persons) {
HashMap<String, Object> item = new HashMap<String, Object>();
item.put("amount", person.getAmount());
item.put("id", person.getId());
item.put("name", person.getName());
item.put("phone", person.getPhone());
data.add(item);
}
SimpleAdapter adapter = new SimpleAdapter(getApplicationContext(),data, R.layout.item,
new String[] { "name", "phone", "amount" }, new int[] {R.id.name, R.id.phone, R.id.amount });
          // item表示為之前定義的item.xml,表示將data集合中的每一個對象綁定到些item中,即將data中的每一項綁定到一個視圖item上;
          // 後兩個參數表示把結果集中哪些key的值綁定到哪些控制項上;(把結果集中key為name對應的對象綁定到視圖中id為name的控制項上)
listview.setAdapter(adapter);//內部處理流程如下
// {int total = adapter.getCount();// 擷取得到的資料總數
// int perpage = 7;//擷取每一頁的顯示條目數,
// for (int i = 0; i < perpage; i++) {
// View view = adapter.getView(i, convertView, parent);//第二次執行時會將前一次執行的view傳給convertView;
// 顯示條目
// }}
}

private void show2() {//此方法需要一個結果集中的Cursor,要求Cursor中需要有一個名稱為_id的欄位;所以添加一個擷取Cursor的方法如下!
Cursor cursor = ps.getCursorScollData(0, 10);
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,R.layout.item, cursor,
new String[] { "name", "phone", "amount" }, new int[] {R.id.name, R.id.phone, R.id.amount });
listview.setAdapter(adapter);
}

     public Cursor getCursorScollData(int offest, int maxResult) {
SQLiteDatabase db = dbOpenHelper.getReadableDatabase();//因為要求結果集中要有一個名為_id的字,所以SQL語句如下!
Cursor cursor = db.rawQuery("select personid as _id,name,phone,amount from person order by personid asc limit ?,?",
new String[] { String.valueOf(offest),String.valueOf(maxResult) });
// db.query(table, columns, selection, selectionArgs, groupBy, having,orderBy, limit);
return cursor;
}

private void show3() {
List persons = ps.getScollData(0, 10);// PersonAdapter見下一章節自訂配接器
PersonAdapter adapter = new PersonAdapter(getApplicationContext(),persons, R.layout.item);
listview.setAdapter(adapter);
}

當每點擊一項需要擷取此項的相關資訊時可以添加此方法:
listview.setOnItemClickListener(new ItemClickListener());

private final class ItemClickListener implements OnItemClickListener {
@Override//此方法中第一個參數為顯示資料(item項)的控制項,在此例子中即為ListView;第三個參數為點擊項的位置,
public void onItemClick(AdapterView<?> parent, View arg1, int position,long arg3) {
ListView lview = (ListView) parent;
// show3()方法對應的處理方法
// Person person = (Person) lview.getItemAtPosition(position);
// Toast.makeText(getApplicationContext(),person.getId().toString(),1).show();

              // show2()方法對應的處理方法
              // show2方法中,adapter返回的是Cursor,
// Cursor cursor = (Cursor) lview.getItemAtPosition(position);
// int personid = cursor.getInt(cursor.getColumnIndex("_id"));
// Toast.makeText(getApplicationContext(), personid + "", 1).show();

              // show1()方法對應的處理方法
// show1方法中,adapter返回的是Map,再對Map進行操作取出相應的id值
HashMap<String, Object> item = (HashMap<String, Object>) lview.getItemAtPosition(position);
int personid = (Integer) item.get("id");
Toast.makeText(getApplicationContext(), personid + "", 1).show();
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.