如何从android中的simplecursoradapter中的[]值中分割出来

时间:2014-02-19 08:43:05

标签: android simplecursoradapter

我使用simplecursoradapter在列表中显示值。没什么问题。但如何从android

中的simplecursoradapter中的[]值中分割出来

的装置。我有这个值 - >的约翰-44-2013

此值显示在列表中。但我想只显示 John

String[] from = new String[] { column[0], column[1] };
int[] to = new int[] { R.id.colID, R.id.colDate };

TestCursorAdapter sca = new TestCursorAdapter (this,R.layout.gridrowsaveddetail, c,from, to);

public class TestCursorAdapter extends SimpleCursorAdapter {
    String [] from;
    int [] to;
    public TestCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) {
        super(context, layout, c, from, to);
        this.from=from;
        this.to=to;
    }
@Override
    public void bindView(View view, Context context, Cursor cursor) {

        TextView title_of_list= (TextView) view.findViewById(R.id.colDate);
        String temp=cursor.getString(cursor.getColumnIndex(from[1]));

             String[] parse = temp.split("-");
        title_of_list.setText(parse[0].trim());
super.bindView(view, context, cursor);

    }

}

但是没有得到这个。为什么这段代码有问题。谢谢你的进步。

1 个答案:

答案 0 :(得分:3)

移除对super.BindView

的调用

此调用将尝试设置文本本身,从而推翻您的行为。

或者,将调用放在方法的开头。