0

私のアプリは SMS を受信し、それを SQLite に保存してから、リストに表示します。残りは完了しましたが、データをリストに入れることができません。これどうやってするの?

これが私が試していることです:

list.setOnItemClickListener(new OnItemClickListener() {

        public void onItemClick(AdapterView<?> arg0, View view,
                int position, long index) {
            // here send Recent case Object  OR or Recent case info.  to show case information

        }
    });

ここに私のアダプターがあります:

 public class RecentCaseListAdapter extends BaseAdapter {
private RecentCases myPage;
static public List<RecentCaseClass> listOfCases;

RecentCaseClass entry;


public RecentCaseListAdapter(RecentCases R, List<RecentCaseClass> listOfCaseParameter) {
    this.myPage = R;
    this.listOfCases = listOfCaseParameter;

}

public int getCount() {
    return listOfCases.size();
}

public Object getItem(int position) {
    return listOfCases.get(position);
}

public long getItemId(int position) {
    return position;
}

public View getView(int position, View convertView, ViewGroup viewGroup) {

     entry = listOfCases.get(position);

     if (convertView == null) {

        LayoutInflater inflater = (LayoutInflater) myPage.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = inflater.inflate(R.layout.recent_cases_row, null);
      }

    // this is row items..
    // Set the onClick Listener on this button

    TextView tvCase = (TextView) convertView.findViewById(R.id.tvrecentName);
    tvCase.setText(entry.getName());
    TextView tvCaseInfo = (TextView) convertView.findViewById(R.id.recent_info);
    tvCaseInfo.setText(entry.getAge());

    // To be a clickable button



    return convertView;
}



public void add(RecentCaseClass rCaseClass) {
    // TODO Auto-generated method stub
    listOfCases.add(rCaseClass);
}


}

これが私のリストです

    public static List<RecentCaseClass> RecentCaseList = new ArrayList<RecentCaseClass>();

public static List<RecentCaseClass> getRecentCaseList() {
    return RecentCaseList;
}

public static void setRecentCaseList(List<RecentCaseClass> recentCaseList) {
    RecentCaseList = recentCaseList;
}

ここでリストに追加する必要があります

if (SMSReceived.startsWith("Hi")) {
            Toast.makeText(context, "Iam in hi", Toast.LENGTH_LONG)
                    .show();

            msg = SMSReceived;

            RecentCaseClass rCase = run();
            dbAdapter.add(rCase);

            All_Static.RecentCaseList.add(recent1);
        }
4

1 に答える 1

0

何を求めているのかまだよくわからないので、これが役立つかどうかはわかりません。大まかに次のことをしたいと思います:

1) リストに入れたいデータをクエリして、android.database.Cursor オブジェクトを作成します。2) 表示したいクエリの列を含む文字列配列を作成します。例えばString[] from_list = new String[] { "title", "case" }

3) 入力するリスト行の TextViews の ID を使用して int 配列を作成します。例:int[] to_list = new int[] {R.id.title, R.id.case}

4) SimpleCursorAdapter を作成して、カーソルをリストにマップします。

SimpleCursorAdapter mAdapter = new SimpleCursorAdapter (this, R.layout.list_row, mCursor, from_list, to_list);

5) `setListAdapter(mAdapter);

これはまったく役に立ちますか?

于 2012-05-10T01:49:17.810 に答える