Lockwood的努力。让我们看到如此精彩的文章。
第一部分 没有Loader之前的世界
曾经情况
并且该“managed cursors”方式在activity配置变化(configuration changed,横竖屏切换、键盘弹出等)时。并不会保持数据。
在这些情况下会又一次requry()数据,可是实际上是没有必要、低效。并且会导致方向切换呆滞和卡顿。
Managed Cursors的问题
以下提供的代码是在一个ListActivity里面加载数据使用的是Android3.0之前的APIs。该活动从ContentProvider里面查询数据,而且管理返回的cursor。
查询结果用SimpleCursorAdapter包装,而且显示在listview中。
代码精炼例如以下:
public class SampleListActivity extends ListActivity { private static final String[] PROJECTION = new String[] {"_id", "text_column"}; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); // Performs a "managed query" to the ContentProvider. The Activity
// will handle closing and requerying the cursor.
//
// WARNING!! This query (and any subsequent re-queries) will be
// performed on the UI Thread!!
Cursor cursor = managedQuery(
CONTENT_URI, // The Uri constant in your ContentProvider class
PROJECTION, // The columns to return for each data row
null, // No where clause
null, // No where clause
null); // No sort order String[] dataColumns = { "text_column" };
int[] viewIDs = { R.id.text_view }; // Create the backing adapter for the ListView.
//
// WARNING!! While not readily obvious, using this constructor will
// tell the CursorAdapter to register a ContentObserver that will
// monitor the underlying data source. As part of the monitoring
// process, the ContentObserver will call requery() on the cursor
// each time the data is updated. Since Cursor#requery() is performed
// on the UI thread, this constructor should be avoided at all costs!
SimpleCursorAdapter adapter = new SimpleCursorAdapter(
this, // The Activity context
R.layout.list_item, // Points to the XML for a list item
cursor, // Cursor that contains the data to display
dataColumns, // Bind the data in column "text_column"...
viewIDs); // ...to the TextView with id "R.id.text_view" // Sets the ListView's adapter to be the cursor adapter that was
// just created.
setListAdapter(adapter);
}
}
上面的代码有3个问题。假设你读懂了上面讲的内容。那么開始两个问题不难读懂。
可是使用这样的方式导致每次activity的状态从stopped返回时都须要又一次查询数据,这一般会导致UI线程卡顿。让activity替我们管理cursor所冒的风险大于便捷性。
该构造方法问题是,当有改变时,将导致SimpleCursorAdapter自己主动查询。
更详细来说。CursorAdapter会在数据上注冊一个ContentObserver监听器。当监听的数据变化时会requery数据。
我们应该使用标准的构造函数(假设你尝试使用CursorLoader来加载适配器数据,确保最后一个參数传入值为0)。
假设你不能理解第三条,没有关系,这只不过个小错误。
更大的设备。7~10寸的平板的应用更复杂、交互很多其它、有很多其它的界面布局。兴许将介绍Fragment,fragment使应用更动态化,很多其它的事件驱动。一个简单的。单线程的方法来加载数据显然已经不再合适。所以这就是Loader和LoaderManager在Android3.0诞生的背景。
Android3.0,Loaders, LoaderManager
Loaders确保全部的cursor操作是异步的。从而排除了UI线程中阻塞的可能性。
并且,当通过LoaderManager来管理,Loaders还能够在activity实例中保持当前的cursor数据,也就是不须要又一次查询(比方,当由于横竖屏切换须要又一次启动activity时)。
还有额外的优点,当数据改变时。Loaders能够非常聪明的自己主动检測底层数据的更新和又一次检索。
总结
还有一方面。Loaders能够通过将数据加载工作交给单独的后台进程。将明显的提高用户体验。