0

ユーザーがフォームに入力する必要があるアプリを作成しています。特定の列が空である行をフェッチして、ユーザーに表示する必要があります。行数を取得できます

Cursor appcount=db.rawQuery("select count(app_salutation) AS appempty from "+AllValuesTable+" where app_salutation=''", null);
    appcount.moveToFirst();
    int apco=appcount.getInt(0);
    appcount.close();

今、いくつかの空のフィールドを持つこれらの行を表示したいと思います。それ、どうやったら出来るの??

4

1 に答える 1

0

使用できます

<?xml version="1.0" encoding="utf-8"?>
<ListLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
</ListLayout> 
</Scrollable>

レイアウトして中に入れる ListLayout

このリンクを使用して

http://www.codeproject.com/Articles/316690/Custom-list-item-layout

于 2013-04-27T07:19:56.140 に答える