绑定到 TextView

发布于 2024-12-02 14:47:21 字数 774 浏览 3 评论 0原文

我已经尝试过本网站中讨论将数据绑定到 TextView 的所有示例 但没有解决我的问题。

我有一个 dataBase 和 TextView ,我用一个简单的光标适配器将它们绑定在一起

        MyDataBase mDB = new MyDataBase(this);
        Cursor cursor = mDB.all(this);

        String[] from = new String[] {mDB.VALUE};
        int[] to = new int[] {R.id.text1View1};

        SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.main, cursor, from , to );
        adapter.setViewBinder(new myViewBinder()); 

,这是 myViewBinder 的代码,

public boolean setViewValue(View view, Cursor cursor, int columnIndex) {

    TextView txtWelcome = (TextView) view;
    String name = cursor.getString(VALUE_ID);
    txtWelcome.setText(name);
}

任何人都可以帮助我知道为什么主活动在午餐时没有变化? 我需要添加什么额外的代码?

I've tried all the examples in this site that talk about binding data to a TextView
but nothing solve my problem .

I have a dataBase, and TextView , I bind them together with a simple cursor adapter

        MyDataBase mDB = new MyDataBase(this);
        Cursor cursor = mDB.all(this);

        String[] from = new String[] {mDB.VALUE};
        int[] to = new int[] {R.id.text1View1};

        SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.main, cursor, from , to );
        adapter.setViewBinder(new myViewBinder()); 

and here is the code of the myViewBinder

public boolean setViewValue(View view, Cursor cursor, int columnIndex) {

    TextView txtWelcome = (TextView) view;
    String name = cursor.getString(VALUE_ID);
    txtWelcome.setText(name);
}

can any one help me to know why there's no change in the main activity when it's lunched?
what extra code I need to add ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬花如无物 2024-12-09 14:47:21

尝试在设置适配器后添加 adapter.notifyDataSetChanged()

Try adding adapter.notifyDataSetChanged() after setting the adapter?

雨轻弹 2024-12-09 14:47:21

我相信要使其工作,您必须能够将 SimpleCursorAdapter 设置为 TextView 上的适配器,但 TextView 类不支持开箱即用的该操作。

I believe for this to work you would have to be able to set the SimpleCursorAdapter as the adapter on the TextView but the TextView class doesn't support that operation out of the box.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文