在 Android 中对 Cursor 进行排序以在 SimpleCursorAdapter 中使用

发布于 2024-10-20 01:29:51 字数 736 浏览 1 评论 0原文

我正在为我的 Android 课程做一个项目。该应用程序非常丑陋并且不是很有用,但它是为了演示我们可以实现内容提供商。我遇到的问题是对光标进行排序。这是我的代码:

setContentView(R.layout.main);
String[] projection = new String[] {Phone.CONTACT_ID, Phone.DISPLAY_NAME, Phone.NUMBER};
    Cursor mCursor = this.getContentResolver().query(Phone.CONTENT_URI, projection , null, null, "Phone.CONTACT_ID ASC");
    startManagingCursor(mCursor);

    ListAdapter adapter = new SimpleCursorAdapter(
            this, // Context.
            R.layout.rows,
            mCursor,                                              
            new String[] {Phone.CONTACT_ID, Phone.DISPLAY_NAME, Phone.NUMBER}, 
            new int[] {R.id.text1, R.id.text2, R.id.text3});
    setListAdapter(adapter);

I'm doing a project for my Android class. The app is very ugly and not very useful, but it's to demonstrate that we can implement Content Providers. The problem I'm having is sorting the Cursor. Here is my code:

setContentView(R.layout.main);
String[] projection = new String[] {Phone.CONTACT_ID, Phone.DISPLAY_NAME, Phone.NUMBER};
    Cursor mCursor = this.getContentResolver().query(Phone.CONTENT_URI, projection , null, null, "Phone.CONTACT_ID ASC");
    startManagingCursor(mCursor);

    ListAdapter adapter = new SimpleCursorAdapter(
            this, // Context.
            R.layout.rows,
            mCursor,                                              
            new String[] {Phone.CONTACT_ID, Phone.DISPLAY_NAME, Phone.NUMBER}, 
            new int[] {R.id.text1, R.id.text2, R.id.text3});
    setListAdapter(adapter);

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

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

发布评论

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

评论(1

执妄 2024-10-27 01:29:51

而不是这样做:

..., "Phone.CONTACT_ID ASC");

尝试这个

..., Phone.CONTACT_ID + " ASC");

Instead of doing this:

..., "Phone.CONTACT_ID ASC");

try this

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