当前位置: 首页>>代码示例>>Java>>正文


Java SimpleCursorAdapter.notifyDataSetChanged方法代码示例

本文整理汇总了Java中android.widget.SimpleCursorAdapter.notifyDataSetChanged方法的典型用法代码示例。如果您正苦于以下问题:Java SimpleCursorAdapter.notifyDataSetChanged方法的具体用法?Java SimpleCursorAdapter.notifyDataSetChanged怎么用?Java SimpleCursorAdapter.notifyDataSetChanged使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.widget.SimpleCursorAdapter的用法示例。


在下文中一共展示了SimpleCursorAdapter.notifyDataSetChanged方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: queryData

import android.widget.SimpleCursorAdapter; //导入方法依赖的package包/类
/**
 * 关注1
 * 模糊查询数据 & 显示到ListView列表上
 */
private void queryData(String tempName) {

    // 1. 模糊搜索
    Cursor cursor = helper.getReadableDatabase().rawQuery(
            "select id as _id,name from Search where name like '%" + tempName + "%' order by id desc ", null);
    // 2. 创建adapter适配器对象 & 装入模糊搜索的结果
    adapter = new SimpleCursorAdapter(mContext, android.R.layout.simple_list_item_1, cursor, new String[] { "name" },
            new int[] { android.R.id.text1 }, CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
    // 3. 设置适配器
    listView.setAdapter(adapter);
    adapter.notifyDataSetChanged();

    System.out.println(cursor.getCount());
    // 当输入框为空 & 数据库中有搜索记录时,显示 "删除搜索记录"按钮
    if (tempName.equals("") && cursor.getCount() != 0){
        tv_clear.setVisibility(VISIBLE);
    }
    else {
        tv_clear.setVisibility(INVISIBLE);
    };

}
 
开发者ID:AndroidBoySC,项目名称:Mybilibili,代码行数:27,代码来源:MySearchView.java

示例2: queryData

import android.widget.SimpleCursorAdapter; //导入方法依赖的package包/类
/**
 * 关注1
 * 模糊查询数据 & 显示到ListView列表上
 */
private void queryData(String tempName) {

    // 1. 模糊搜索
    Cursor cursor = helper.getReadableDatabase().rawQuery(
            "select id as _id,name from records where name like '%" + tempName + "%' order by id desc ", null);
    // 2. 创建adapter适配器对象 & 装入模糊搜索的结果
    adapter = new SimpleCursorAdapter(context, android.R.layout.simple_list_item_1, cursor, new String[] { "name" },
            new int[] { android.R.id.text1 }, CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
    // 3. 设置适配器
    listView.setAdapter(adapter);
    adapter.notifyDataSetChanged();

    System.out.println(cursor.getCount());
    // 当输入框为空 & 数据库中有搜索记录时,显示 "删除搜索记录"按钮
    if (tempName.equals("") && cursor.getCount() != 0){
        tv_clear.setVisibility(VISIBLE);
    }
    else {
        tv_clear.setVisibility(INVISIBLE);
    };

}
 
开发者ID:Carson-Ho,项目名称:Search_Layout,代码行数:27,代码来源:SearchView.java

示例3: queryData

import android.widget.SimpleCursorAdapter; //导入方法依赖的package包/类
private void queryData(String tempName) {
    Cursor cursor = helper.getReadableDatabase().rawQuery(
            "select id as _id,name from records where name like '%" +
                    tempName + "%' order by id desc ", null);
    // 创建adapter适配器对象
    adapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_1, cursor, new String[] { "name" },
            new int[] { android.R.id.text1 }, CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
    // 设置适配器
    listview.setAdapter(adapter);
    adapter.notifyDataSetChanged();
}
 
开发者ID:xdstudent,项目名称:ZhiHuIndex-master,代码行数:12,代码来源:SearchActivity.java

示例4: applySuggestionCursor

import android.widget.SimpleCursorAdapter; //导入方法依赖的package包/类
/**
 * Set the suggestion cursor to an Adapter then set it to the search view
 */
private void applySuggestionCursor() {
	String[] cols = { COLUMN_NAME_ADDRESS};
	int[] to = {R.id.suggestion_item_address};
	SimpleCursorAdapter mSuggestionAdapter = new SimpleCursorAdapter(mMapView.getContext(),
			R.layout.search_suggestion_item, mSuggestionCursor, cols, to, 0);
	mSearchview.setSuggestionsAdapter(mSuggestionAdapter);
	mSuggestionAdapter.notifyDataSetChanged();
}
 
开发者ID:Esri,项目名称:maps-app-android,代码行数:12,代码来源:MapFragment.java


注:本文中的android.widget.SimpleCursorAdapter.notifyDataSetChanged方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。