其他分享
首页 > 其他分享> > 如何在Android的simplecursoradapter中从[]值拆分

如何在Android的simplecursoradapter中从[]值拆分

作者:互联网

我已经使用simplecursoradapter在列表中显示了价值.没问题.但是如何在Android的simplecursoradapter中从[]值拆分

手段.我敢说这个值->约翰44-2013

此值显示在列表中.但我只想展示约翰.

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);

    }

}

但没有得到这个.为什么这段代码有问题.谢谢你提前.

解决方法:

删除对super.BindView的调用

该调用将尝试设置文本本身,从而否决您的操作.

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

标签:simplecursoradapter,android
来源: https://codeday.me/bug/20191122/2056982.html