这个例子是在Fragment中显示一个ListView的完整实现,ListView中包含针对通讯录内容提供器的查询结果。它使用一个CursorLoader来管理基于内容提供器的查询。
因为这个应用程序访问了用户的通讯录,因此它的清单文件中必须包含READ_CONTACTS许可。
public static class CursorLoaderListFragment extends ListFragment
implements OnQueryTextListener, LoaderManager.LoaderCallbacks<Cursor> {
// This is the Adapter being used to display the list's data.
SimpleCursorAdapter mAdapter;
// If non-null, this is the current filter the user has provided.
String mCurFilter;
@Override public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
// Give some text to display if there is no data. In a real
// application this would come from a resource.
setEmptyText("No phone numbers");
// We have a menu item to show in action bar.
setHasOptionsMenu(true);
// Create an empty adapter we will use to display the loaded data.
mAdapter = new SimpleCursorAdapter(getActivity(),
android.R.layout.simple_list_item_2, null,
new String[] { Contacts.DISPLAY_NAME, Contacts.CONTACT_STATUS },
new int[] { android.R.id.text1, android.R.id.text2 }, 0);
setListAdapter(mAdapter);
// Prepare the loader. Either re-connect with an existing one,
// or start a new one.
getLoaderManager().initLoader(0, null, this);
}
@Override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
// Place an action bar item for searching.
MenuItem item = menu.add("Search");
item.setIcon(android.R.drawable.ic_menu_search);
item.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
SearchView sv = new SearchView(getActivity());
sv.setOnQueryTextListener(this);
item.setActionView(sv);
}
public boolean onQueryTextChange(String newText) {
// Called when the action bar search text has changed. Update
// the search filter, and restart the loader to do a new query
// with this filter.
mCurFilter = !TextUtils.isEmpty(newText) ? newText : null;
getLoaderManager().restartLoader(0, null, this);
return true;
}
@Override public boolean onQueryTextSubmit(String query) {
// Don't care about this.
return true;
}
@Override public void onListItemClick(ListView l, View v, int position, long id) {
// Insert desired behavior here.
Log.i("FragmentComplexList", "Item clicked: " + id);
}
// These are the Contacts rows that we will retrieve.
static final String[] CONTACTS_SUMMARY_PROJECTION = new String[] {
Contacts._ID,
Contacts.DISPLAY_NAME,
Contacts.CONTACT_STATUS,
Contacts.CONTACT_PRESENCE,
Contacts.PHOTO_ID,
Contacts.LOOKUP_KEY,
};
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
// This is called when a new Loader needs to be created. This
// sample only has one Loader, so we don't care about the ID.
// First, pick the base URI to use depending on whether we are
// currently filtering.
Uri baseUri;
if (mCurFilter != null) {
baseUri = Uri.withAppendedPath(Contacts.CONTENT_FILTER_URI,
Uri.encode(mCurFilter));
} else {
baseUri = Contacts.CONTENT_URI;
}
// Now create and return a CursorLoader that will take care of
// creating a Cursor for the data being displayed.
String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND ("
+ Contacts.HAS_PHONE_NUMBER + "=1) AND ("
+ Contacts.DISPLAY_NAME + " != '' ))";
return new CursorLoader(getActivity(), baseUri,
CONTACTS_SUMMARY_PROJECTION, select, null,
Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
}
public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
// Swap the new cursor in. (The framework will take care of closing the
// old cursor once we return.)
mAdapter.swapCursor(data);
}
public void onLoaderReset(Loader<Cursor> loader) {
// This is called when the last Cursor provided to onLoadFinished()
// above is about to be closed. We need to make sure we are no
// longer using it.
mAdapter.swapCursor(null);
}
注:本人转载系个人觉得翻译的很好,值得收藏,且自己回头看着方便。
如有兴趣请访问作者官方博客http://blog.csdn.net/FireOfStar
分享到:
相关推荐
这个"Android高级应用源码-人脸检测的API例子"压缩包提供了关于如何在Android应用中实现人脸检测功能的实例代码,对于开发者来说是极具价值的学习资源。 1. **人脸检测API**:在Android中,人脸检测主要依赖于`...
### Android 用户界面程序简单例子详解 #### 一、概述 在Android开发中,用户界面(User Interface, UI)设计是至关重要的一个环节。良好的用户界面不仅能够提升用户体验,还能让应用程序更加直观易用。本文将通过一...
system class loader 是默认的装载器,在没有指定装载器的情况下默认装载用户类。在 Sun Java 1.5 中,system class loader 是 sun.misc.Launcher$AppClassLoader。 准备 heap dump 为了分析内存泄露,需要准备 ...
- **问题**: 生成虚拟机Dalvik,再在虚拟机上装载并运行ZygoteInit类,执行这一任务的进程是什么? - **答案**: A. app_process - **解析**: `app_process`是Android系统中的一个关键进程,它负责启动Zygote进程...
主要内容包括Android的四大应用程序组件(Activity、Service、Content ...Android支持的各种组件技术、通信技术(蓝牙、NFC、网络等)、异步装载、推送技术、多媒体、2D绘图技术、OpenGL ES、桌面小部件、动态壁纸、...
主要内容包括Android的四大应用程序组件(Activity、Service、Content ...Android支持的各种组件技术、通信技术(蓝牙、NFC、网络等)、异步装载、推送技术、多媒体、2D绘图技术、OpenGL ES、桌面小部件、动态壁纸、...
在XML布局文件中,TabHost通常被定义为根元素,TabWidget作为子元素负责显示标签,而FrameLayout则作为内容区域,用于装载每个标签对应的视图。以下是一个基本的TabHost布局示例: ```xml <TabHost xmlns:android=...
ViewStub的设计理念是实现控件的惰性装载,即在需要时才加载和初始化视图,而不是在应用启动时一次性加载所有布局。这在处理大型布局或者有多个可选组件的情况下尤其重要。 在传统的布局文件中,如使用标签,会将被...
TabHost的核心是TabWidget,它显示了各个标签,而FrameLayout(通常被称为"宿主"或"容器")则用来装载被选中标签对应的视图。以下是对这个例子中可能涉及的知识点的详细解释: 1. **TabWidget**:TabWidget是...
- 在实际使用中,通常需要创建一个ArrayAdapter来装载数据源,然后将这个适配器绑定到AutoCompleteTextView上,以实现自动提示效果。 以下是一个简单的示例代码: ```java // 初始化控件 AutoCompleteTextView ...
有时,即使是微软发布的系统补丁,也可能引起系统启动速度变慢的问题,如代号为Q328310的补丁就是一个典型例子。遇到此类情况,应及时关注官方发布的更新或修复补丁,以恢复正常的启动速度。 总之,系统启动速度受...
图片到图片装载器、绘制火焰效果的X坐标,Y坐标、得到X坐标,Y坐标值、绘制火焰效果Image…… Java加密解密工具集 JCT v1.0源码包 5个目标文件 内容索引:JAVA源码,综合应用,JCT,加密解密 WDSsoft的一款免费源代码 JCT ...