列表视图每页只显示一个数据

时间:2014-01-07 07:36:55

标签: android mysql android-listview

我在MySQL数据库的List-view中加载数据,一切正常,只是我的List-view每页显示一个数据,如果我向下滚动则第二个数据,如果再向下滚动然后向下滚动第三个数据。它没有一个接一个地显示出来。那么问题是什么,我需要设置任何属性或其他任何东西。请帮我下面是我的代码。

enter image description here

我的XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/classes_slider"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/back_bg"
android:orientation="vertical" >


<ImageView
    android:id="@+id/headerbar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/headerbar_small" />

<ImageView
    android:id="@+id/skirrlogo"
    android:layout_width="100dp"
    android:layout_height="30dp"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="50dp"
    android:layout_marginTop="10dp"
    android:src="@drawable/skirrwhite" />

<ImageView
    android:id="@+id/skirrmenu"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="15dp"
    android:src="@drawable/slideropener" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/skirrlogo"
    android:layout_marginLeft="15dp"
    android:layout_toRightOf="@+id/skirrlogo"
    android:text="@string/classses"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textStyle="bold" />

<ImageView
    android:id="@+id/newclass"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/headerbar"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="14dp"
    android:src="@drawable/class_button_new" />

<ImageView
    android:id="@+id/deletemenu"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignTop="@+id/skirrlogo"
    android:src="@drawable/menubutton_large" />

<ListView
    android:id="@+id/displaydata"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/newclass" >

</ListView>

</RelativeLayout>

Customclass.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="wrap_content"
android:background="@drawable/back_bg" >

<CheckBox
    android:id="@+id/checkBox1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<TextView
    android:id="@+id/classname"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dip"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textColor="#000000"
    android:textStyle="bold" />

</LinearLayout>

这是我在List-view中加载数据的方式:

/**
                 * Updating parsed JSON data into ListView
                 * */
                ListAdapter adapter = new SimpleAdapter(
                        Classes_Ext_DB.this, productsList,
                        R.layout.custom_class, new String[] {
                                TAG_CLASSNAME, TAG_ID },
                        new int[] { R.id.classname });
                mListView.setAdapter(adapter);

2 个答案:

答案 0 :(得分:2)

所以,只需从android:background="@drawable/back_bg"中删除Customclass.xml,一切正常。

答案 1 :(得分:0)

custom_class.xml与Customclass.xml相同吗?检查并确保。