1

私のアプリケーションにはlistview、データベースからのデータを表示しているという点で1つあります。

以下は私のコードです:

for(int i=1;i<=db.getAllTitles().getCount();i++)
              {
                 String cat=db.getTitle(i).getString(5).toString();
                 Cursor c = db.gethouseholdTitle();
                  startManagingCursor(c); 
                 if(cat.equals("Income"))
                 {  
//                   System.out.println("inside if="+select);
//                   Cursor cin = db.income();
                      from = new String[] { db.KEY_INCOME,db.KEY_DESC,db.KEY_CATEGORY,db.KEY_QUANTITY,db.KEY_TOTAL};
                      to = new int[] {R.id.text1 ,R.id.text3,R.id.text5,R.id.text7,R.id.text9};
                     SimpleCursorAdapter notes =
                                new SimpleCursorAdapter(this, R.layout.columnview, c, from, to);
                    //  System.out.println("notes="+notes.getCount());
                    //  setListAdapter(notes);    
                       lv.setAdapter(notes);  
                 }
                 else
                 {
                     String catexp=db.getTitle(i).getString(5).toString();
                     Cursor cexp = db.gethouseholdTitleExp();
                    System.out.println("inside else="+cexp.getCount());
                     from = new String[] { db.KEY_INCOME,db.KEY_DESC,db.KEY_CATEGORY,db.KEY_QUANTITY,db.KEY_TOTAL};
                     to = new int[] {R.id.text2 ,R.id.text4,R.id.text6,R.id.text8,R.id.text10};
                    SimpleCursorAdapter notesexp =
                            new SimpleCursorAdapter(this, R.layout.columnview, cexp, from, to);
                //  System.out.println("notes="+notes.getCount());
                //  setListAdapter(notes);    
                   lv.setAdapter(notesexp);  
                 }                   

              }

私のxmlファイル:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:paddingTop="4dip"
     android:paddingBottom="6dip"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:orientation="vertical">         

     <TextView android:id="@+id/text1"      
        android:layout_width="30dip"
        android:layout_height="wrap_content"        
        android:text="Price:"/> 

      <TextView android:id="@+id/text2"     
        android:layout_width="110dip"
        android:layout_height="wrap_content" 
        android:layout_marginLeft="50dp"
        android:layout_marginTop="-20dp"
        android:layout_weight="1"/>

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

     <TextView android:id="@+id/text4"      
        android:layout_marginTop="-20dp"
        android:layout_width="110dip"
        android:layout_height="wrap_content" 
        android:layout_marginLeft="180dp"       
        android:layout_weight="1"/>  

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

       <TextView android:id="@+id/text6"        
        android:layout_marginTop="-20dp"
        android:layout_width="110dip"
        android:layout_height="wrap_content" 
        android:layout_marginLeft="180dp"       
        android:layout_weight="1"/>  

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

         <TextView android:id="@+id/text8"      
        android:layout_marginTop="-20dp"
        android:layout_width="110dip"
        android:layout_height="wrap_content" 
        android:layout_marginLeft="180dp"       
        android:layout_weight="1"/>  

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

          <TextView android:id="@+id/text10"        
        android:layout_marginTop="-20dp"
        android:layout_width="110dip"
        android:layout_height="wrap_content" 
        android:layout_marginLeft="180dp"       
        android:layout_weight="1"/>  

      <TextView
        android:id="@+id/textView21"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/> 

</LinearLayout>..

この場合、incomeデータのみが表示されます。には何も表示されていませんexpense。データベースで経費の数を確認しました。正確な数がわかります。したがって、データはデータベースに存在しますが、表示されません。デザインに問題はありますか?

4

2 に答える 2

0

リストビューでは、1 つのアイテムのみをロードできます。複数のロードはサポートされていません。同じ構文でグリッドビューで表示してみてください。リスト ビューで試してみたい場合は、ベース アダプターを介して列をリスト ビューに追加する必要があります。ベース アダプターのチュートリアル リンクを参照してください

http://pradeep-sharma.com/blog/android-custom-listview-baseadapter-tutorial/

于 2012-07-11T06:43:52.447 に答える
0

この指定されたコーディングでレイアウトを描画し、

showlist.xml:

 <?xml version="1.0" encoding="utf-8"?>
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content" >
<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/Show">
    <TextView android:layout_width="50dp" android:layout_height="20dp" android:textColor="#ff8000"
        android:id="@+id/Entry"  android:layout_weight="1" android:gravity="left"/>

    <TextView android:layout_width="50dp" android:layout_height="20dp" android:textColor="#ff8000"
        android:id="@+id/sales"  android:layout_weight="1" android:gravity="right" />
</TableRow>

ここに任意のテキストビューを追加できます。4 つのテキストビューを追加したいので、テキストビューの幅を 25 dp に変更する必要があります。

GridView セット:

次に、指定されたように gridview コーディング用の simplecursadapter を設定します

       ada=new SimpleCursorAdapter(context, R.layout.showlist, mon,new String[] { cname, "_id" }, new int[] { R.id.Entry,R.id.sales }) 

   gridview.setadapter(ada);

   //It will work well.

主なことは、列が1つであることに言及してグリッドビューを作成する必要があることです。

結果は

ここに画像の説明を入力

于 2012-07-11T07:13:48.133 に答える