0

私が欲しいのは、リスト ビューに 3 つの文字列フィールドを持つレコードのリストだけです。アプリを使用すると、より多くのレコードが生成され、このアクティビティはレコードをログとして表示します。データはローカル ストレージの CSV ファイルに記録され、そこから読み取られます。データを保存するためのより良い方法を知っている場合は、私にも知らせてください。

これが私のカスタムアダプターです。デバッグ中にコンストラクターを実行しますが、 getView() のオーバーライドが呼び出されないため、何も表示されないのはなぜですか? 以下のコード:

public class TransRecordAdapter extends ArrayAdapter<String[]> {
    private List<String[]> history;

    public TransRecordAdapter(Context context, int textViewResourceId, List<String[]> history2) {
        super(context, textViewResourceId);
        this.history = history2;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View v = convertView;
        if (v == null) {
            LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(R.layout.listitem, null);
        }

        String[] rec = history.get(position);
        if (rec != null) {
            TextView input = (TextView) v.findViewById(R.id.history_input);
            TextView trans = (TextView) v.findViewById(R.id.history_trans);
            TextView num = (TextView) v.findViewById(R.id.history_num);

            if (rec[0] != null) {
                input.setText(rec[0]);
            }
            if (rec[1] != null) {
                trans.setText(rec[1]);
            }               
            if (rec[2] != null) {
                num.setText(rec[2]);
            }
        } 
        return v;
    }
}

そして、このアクティビティの onCreate()

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_gematria_droid_history);
    ListView history_list = (ListView) findViewById(R.id.history_list);

    try {
        File historyFile = this.getFileStreamPath("gematriadroid-history");
        if(!historyFile.exists()) {
            historyFile.createNewFile(); 
        }
        FileReader mFileReader = new FileReader(historyFile);
        CSVReader csvReader = new CSVReader(mFileReader);
        List<String[]> history = csvReader.readAll();
        csvReader.close();

        if(history.size() != 0) {
            TransRecordAdapter adapter = new TransRecordAdapter(this, R.layout.listitem, history);
            history_list.setAdapter(adapter);
        }
    } catch (IOException e1) {
        e1.printStackTrace();
    } catch (RuntimeException e2) {
        e2.printStackTrace();
    } catch (Exception e3) {
        e3.printStackTrace();
    }

}

そしてレイアウト

<LinearLayout 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"
android:orientation="vertical"
android:background="@drawable/background"
tools:context=".GematriaDroidHistory" >
<TextView
    android:id="@+id/history_filter"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:padding="5dp"
    android:hint="@string/history_filter"/>
<ListView
    android:id="@+id/history_list"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:layout_marginBottom="10dp"
    android:background="#FFFFFF">
</ListView>
</LinearLayout>

そしてリスト項目

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="75dp"
android:layout_marginTop="5dp"
android:layout_marginLeft="10dp"
android:layout_marginBottom="5dp"
android:layout_marginRight="10dp"
android:background="@drawable/papyrus"
android:padding="5dp">

<TextView
    android:id="@+id/history_input"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:text="@string/history_input"
    android:textSize="20sp" />

<TextView
    android:id="@+id/history_trans"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:text="@string/history_trans"
    android:textSize="20sp" />

<TextView
    android:id="@+id/history_num"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:textSize="20sp"
    android:text="@string/history_num"/>
</RelativeLayout>
4

1 に答える 1

3

問題は、配列に含まれる要素の数を基本クラスに通知しないことだと思います。

それはあなたのために2つの解決策を提案するかもしれません。

解決策1)コンストラクターを次のように変更します。このように、「履歴」を定義する必要はないと思います。getViewでは、「getItem()」を呼び出すだけで、その位置にあるアイテムを取得できます。

public TransRecordAdapter(Context context, int textViewResourceId, List<String[]> history2) {
    super(context, textViewResourceId, history2);
    this.history = history2;
}

解決策2)getCount()とgetItem()も上書きします。

于 2012-11-29T06:52:36.650 に答える