Android SimpleCursorAdapter-将2列设置为1个视图

Android SimpleCursorAdapter-将2列设置为1个视图,android,textview,simplecursoradapter,Android,Textview,Simplecursoradapter,我有一个SQLite数据库,通过SimpleCursorAdapter在ListView中显示数据。我有两列,但我想在1TextView中显示它们。我该怎么做?谢谢试试这段代码,它可能会对你有所帮助 从Oncreate调用Listview的方法 private void populateListViewFromDB1() { Cursor cursor = helper1.getAllData(Sharedemail);

我有一个SQLite数据库,通过
SimpleCursorAdapter
ListView
中显示数据。我有两列,但我想在1
TextView
中显示它们。我该怎么做?谢谢

试试这段代码,它可能会对你有所帮助

从Oncreate调用Listview的方法

private void populateListViewFromDB1()
                {
                    Cursor cursor = helper1.getAllData(Sharedemail);



                            startManagingCursor(cursor);

                            String[] productname = new String[]
                                    {
                                    DataBaseHelper.KEY_NAMEVALUE,
                                    DataBaseHelper.KEY_TYPE,


                                    };

                            int[] viewproduct = new int[]
                                    {
                                    R.id.textView1,
                                    };

                            // Create Adapter 
                              MySimpleCursoradapter myCursorAdapter = new MySimpleCursoradapter
                                      (this,
                                       R.layout.listview,
                                       cursor,
                                       productname,
                                       viewproduct);


                            ListView List = (ListView) findViewById(R.id.listView1);
                            List.setAdapter(myCursorAdapter);
                       }


                }
MySimpleCursoradapter.java

public class MySimpleCursoradapter extends SimpleCursorAdapter {

public MySimpleCursoradapter(Context context, int layout,
            Cursor cur, String[] from, int[] to) {
        super(context, layout, cur, from, to);

    }

    @SuppressWarnings("static-access")
    @Override
    public View newView(Context con, Cursor c, ViewGroup arg2) {

        LayoutInflater inflater = (LayoutInflater) con
                .getSystemService(con.LAYOUT_INFLATER_SERVICE);

        View retView = inflater.inflate(R.layout.listview, null);

        return retView;
    }

public void bindView(View v, Context context, Cursor c) {

        String pname = c.getString(c.getColumnIndex(DataBaseHelper.KEY__NAMEVALUE));
        String issuetype = c.getString(c.getColumnIndex(DataBaseHelper.KEY_TYPE));

    TextView name_text = (TextView) v.findViewById(R.id.textView1);

name_text.setText(pname +":"+ issuetype);


}

}

使用游标适配器。但是我可以使用什么函数呢?