2

アラームからデータベースにミリ秒を保存していますが、データベースにはそれらがすべて正しく保存されています。これは、それらを単一の TextView に表示してテストし、すべてを表示するためです。しかし、私の ListView は 8 つの数字を持つミリ秒値のみを表示し、9 つ以上の数字がある場合は表示しません。これが私の ListView です:

<?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="vertical" >

    <ListView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="250dp" >

    </ListView>

</LinearLayout>

行に使用する私の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="vertical" >

    <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/text1"
        android:layout_width="match_parent"        
        android:gravity="center"
        android:layout_height="45dp" />

</LinearLayout>

ListView の作成に使用する方法:

private void fillData() {
        // Get all of the notes from the database and create the item list
        Cursor c = DatabaseManager.getAllData();
        startManagingCursor(c);

        String[] from = new String[] { DatabaseManager.TABLE_COLUMN_TWO };
        int[] to = new int[] { R.id.text1 };

        // Now create an array adapter and set it to display using our row
        SimpleCursorAdapter notes =
            new SimpleCursorAdapter(this, R.layout.notes_row, c, from, to);
        setListAdapter(notes);
    }
4

1 に答える 1

0

リストビューを次のコードに置き換えてください。
その動作は良好です。
android:layout_height で Listview の高さを修正しないで
ください。レイアウト xml コードを次の 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="vertical" >

<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>

</LinearLayout>
于 2013-01-31T20:53:23.920 に答える