0

リストビューにいくつかのデータを表示しようとしています。私の問題は、リストビューに1つのアイテムしか表示されないことです。

私はここについて多くのトピックを見つけましたが、どれも私を助けませんでした。

getView()メソッドが1回だけ呼び出されることがわかりました(リストを確認したところ、サイズは178です)。

これが私のコードです:

public class RiverListArrayAdaptater extends ArrayAdapter<LinkedList<River>> {

    private Context context;
    private LinkedList<River> list;

    public RiverListArrayAdaptater(Context context,LinkedList<River> list) {
        super(context,R.layout.list_river);
        this.context = context;
        this.list = list;
    }

    public View getView(int pos, View convertView, ViewGroup parent) {
        // Get variables
        LayoutInflater inflater = (LayoutInflater) cont        ext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);       
        View rowView = inflater.inflate(R.layout.list_river, parent, false);
        TextView textViewName = (TextView) rowView.findViewById(R.id.name);
        TextView textViewValue = (TextView) rowView.findViewById(R.id.value);
        ImageView imageView = (ImageView) rowView.findViewById(R.id.logo);
        textViewName.setText(list.get(pos).getName());
        textViewValue.setText(list.get(pos).getDebit());
        imageView.setImageResource(R.drawable.down);

        return rowView;
    }

}

onCreate()の私のコード:

    LinkedList<River> list = parser.parse(getter.getData());
            RiverListArrayAdaptater adaptater = new     RiverListArrayAdaptater(this,list);
            adaptater.notifyDataSetChanged();
            adaptater.add(list);
            list1.setAdapter(adaptater);

そしてここに私の2つのXMLファイル:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

     <ListView
        android:id="@+id/listRiver"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
      />

</RelativeLayout>

と:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="5dp" >

    <ImageView
        android:id="@+id/logo"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="20dp"
        android:layout_marginTop="5dp"
        android:contentDescription="@+id/up_or_down"
        >
    </ImageView>

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp" >
    </TextView>

    <TextView
        android:id="@+id/value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="15sp" >
    </TextView>

</LinearLayout>

あなたの時間のためのThx...

4

2 に答える 2

2

ArrayAdapterのgetCountをオーバーライドして、リストにあるアイテムの数を返す必要があります。

詳細については、ArrayAdapterのソースを確認してください。

于 2013-01-04T16:06:43.883 に答える
0

私は一度も使用ArrayAdapterしたことはありませんRiverLinkedList<River>

public class RiverListArrayAdaptater extends ArrayAdapter<LinkedList<River>> {...}

次のように置き換える必要があります:

public class RiverListArrayAdaptater extends ArrayAdapter<River> {...}

リストは基本的なオブジェクトと見なされ、最終的には;のリストではLinkedListなくのリストになります。Riverしたがって、アイテムは1つしかないため、アイテムは1つListViewだけLinkedListです。

于 2013-01-04T18:24:09.313 に答える