4

現在、リストの各項目に 2 行のテキストが含まれるカスタム リストビューがあります。私がやりたいことは、ユーザーがボタンをクリックするたびに、ユーザーが入力したテキストでリストに新しい項目を作成することです。テキストを取得する方法はわかっていますが、どこから始めればよいかわからないため、リスト ビューに新しい項目を追加するのに苦労しています。

これが私のコードです:

public class MainFeedActivity extends ListActivity implements OnClickListener {
    View sendButton;
    EditText postTextField;
    TextView currentTimeTextView, mainPostTextView;
    ListView feedListView;
    String[] test;
    ArrayList<HashMap<String, String>> list;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_feed);

        //create button and implement on click listener
        sendButton = this.findViewById(R.id.sendPostButton);
        sendButton.setOnClickListener(this);

        list = new ArrayList<HashMap<String, String>>();

        //create the adapter for the list view
        SimpleAdapter adapter = new SimpleAdapter(
            this,
            list,
            R.layout.post_layout,
            new String[]{"time", "post"},
            new int[]{R.id.postTimeTextView, R.id.postTextView});
        //fill the list view with something - TEST
        fillData();
        //set list adapter 
        setListAdapter(adapter);
    }

    public void fillData() {
        //long timeTest = System.currentTimeMillis();
        HashMap<String, String> temp = new HashMap<String, String>();
        temp.put("time", "current time");
        temp.put("post", "USER TEXT GOES HERE");
        list.add(temp);
    }

    @Override
    public void onClick(View button) {
        switch (button.getId()) {
            case R.id.sendPostButton:
                break;
        }
    }
}
4

2 に答える 2

1

fillData() を呼び出した後、 を呼び出すだけadapter.notifyDataSetChanged()です。

NotifyDataSetChanged () - 基になるデータが変更され、それ自体を更新する必要があることをアタッチされたビューに通知します。

于 2011-10-17T16:26:59.200 に答える