English 中文(简体)
将光标 Loader 生成的光标列的字符串从光标 Loader 插入编辑文本
原标题:Putting a string from a CursorLoader generated Cursor column into an EditText

我正在编程一个关于Honeycomb的应用程序,而且我与我内容提供者的Cursors有麻烦。

Cursor note = mDbHelper.fetchNote(mRowId);
            startManagingCursor(note);
            mTitleText.setText(note.getString(note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));

也就是说,我只想将光标当前位置的数据输入编辑图文, 以便用户能够编辑它。 问题是我不知道如何使用光标 Loader 。 我无法使用有管理的查询( ), 因为它被折旧了, 无论如何我必须调用“ 启动管理” ( 也已被折旧了 ) 。 我该怎么做呢? 提前谢谢 。

问题回答

好吧,我找到了答案,现在相当明显,我只是用了这个代码:

String[] projection = { FlightBundleDatabase.ID, FlightBundleDatabase.COL_TITLE };
            String[] selectionArgs = { Long.toString(id) };

        CursorLoader cursorLoader = new CursorLoader(this, FlightBundleProvider.CONTENT_URI_PHASES, projection, "_id = ?", selectionArgs, null);
        Cursor cursor = cursorLoader.loadInBackground();

        if (cursor.moveToFirst()) {
            mPhaseName.setText(cursor.getString(cursor.getColumnIndexOrThrow(FlightBundleDatabase.COL_TITLE)));
        }
        cursor.close();

我希望光标不会泄露任何资源,

取代:

CursorLoader loader = new CursorLoader(this, FlightBundleProvider.CONTENT_URI_PHASES, projection, "_id = ?", selectionArgs, null);
Cursor cursor = loader.loadInBackground();

您可以直接获得一个光标:

Cursor cursor = this.getContentResolver().query(FlightBundleProvider.CONTENT_URI_PHASES, projection, "_id = ?", selectionArgs, null);

(假设 this 指上下文)。

[还使用其识别号获取物品,通常由“content://pertientity/items/#”形式的“content://authority/items/#”格式的URI处理,该格式返回一个单一项目,而不是指定一个通常返回多个项目的URI选择]





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签