1

我有一个 ListFragment 正在从 ActionBar 中的选项卡导航中调用。我有一个自定义适配器来为每个列表项显示两个不同的文本视图。我在实现我的 onItemClickListener 时遇到了麻烦。这是我的 ListFragment 代码:

public class MaterialsListFragment extends SherlockListFragment {

    public ERGAdapter db;   

    @Override
    public View onCreateView(LayoutInflater inflater, 
    ViewGroup container, Bundle savedInstanceState) {   
        return inflater.inflate(R.layout.portrait_material_view, container, false);
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // create new DBAdapter
        db = new ERGAdapter(getActivity());

        // ---- get all records
        db.open();      // Open database

        // Get all of the notes from the database and create the item list
        Cursor c = db.getAllRecords();

        String[] from = new String[] { ERGAdapter.KEY_IDNO, ERGAdapter.KEY_MATERIAL };
        int[] to = new int[] { R.id.idno, R.id.materials };        

        // Now create an array adapter and set it to display using our row
        MyListAdapter materials = new MyListAdapter(getActivity(), R.layout.list_cell, c, from, to);
        setListAdapter(materials);

        // get the list view and the set the listener
        ListView lv = getListView();
        lv.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                Log.i("MATERIAL"," - position: "+Integer.toString(position));
            }
        });
    }   

    public class MyListAdapter extends SimpleCursorAdapter {

        public MyListAdapter(Context context, int layout, Cursor cursor, String[] from, int[] to) {
            super(context, layout , cursor, from, to);
        }

        @Override
        public void bindView(View view, Context context, Cursor cursor) {


            // Create the idno textview with background image
            TextView idno = (TextView) view.findViewById(R.id.idno);
            String unidno = String.format("%1$.0f", cursor.getDouble(3));
            idno.setText(unidno);

            // create the material textview
            TextView materials = (TextView) view.findViewById(R.id.materials);
            materials.setText(cursor.getString(1));
        }
    } 
}

这条线我遇到了一个致命的例外:ListView lv = getListView();

这是相关的logcat:

05-25 16:32:45.802: E/AndroidRuntime(660): Caused by: java.lang.IllegalStateException: Content view not yet created
05-25 16:32:45.802: E/AndroidRuntime(660):  at android.support.v4.app.ListFragment.ensureList(ListFragment.java:328)
05-25 16:32:45.802: E/AndroidRuntime(660):  at android.support.v4.app.ListFragment.getListView(ListFragment.java:222)
05-25 16:32:45.802: E/AndroidRuntime(660):  at com.cca.ergpro.MaterialsListFragment.onCreate(MaterialsListFragment.java:80)

我认为我需要将其作为我的自定义 CursorAdapter 的一部分,但我不确定如何继续。任何建议将不胜感激。

4

1 回答 1

0

我能够使用这个问题的解决方案让它工作:

创建自定义简单光标适配器

于 2012-05-25T23:54:05.403 回答