我正在创建一个用户需要填写表单的应用。 我需要获取某些特定列为空的行并将其显示给用户。 我可以通过
得到no.of行的计数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();
现在我想显示这些有一些空场的行。 我该怎么办?
答案 0 :(得分: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