- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在构建一个带有描述链接的图片应用程序。会GridView
RecyclerView
使用光标适配器是执行此操作的合适方法,因为使用电影数据库作为电影缩略图和描述数据的源。
最佳答案
请在下面的链接中找到光标适配器实现,我还在链接下面放置了代码,它可能会对您有所帮助。
Recycler view with cursor adapter
首先,CursorAdapter 不适用于 RecyclerView。你正试图破解其中一些永远无法正常工作的东西。您不能只调用它的方法并期望它能够正确运行。查看来源。
所以首先要做的事情。我们想要使用游标。让我们分离出这个责任并创建 RecyclerViewCursorAdapter。正如它所说,CursorAdapter 用于 RecyclerView。其细节与 CursorAdapter 的工作方式几乎相同。查看其来源,看看哪些相同,哪些不同。
接下来,我们现在有了原始类 RVAdapter 来实现抽象 RecyclerViewCursorAdapter,它要求我们实现 onCreateViewHolder 和新的 onBindViewHolder,它为我们提供了一个要绑定(bind)的 Cursor 参数。这些 View 的详细信息与您原来的 View 相同,只是稍微整理了一下。
RVAdapter.java
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.support.v7.widget.CardView;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.squareup.picasso.Picasso;
import java.util.Random;
public class RVAdapter extends RecyclerViewCursorAdapter<RVAdapter.ProductViewHolder>
{
private static final String TAG = RVAdapter.class.getSimpleName();
private final Context mContext;
private final Random mRandom;
public RVAdapter(Context context, String locationSetting)
{
super(null);
mContext = context;
mRandom = new Random(System.currentTimeMillis());
// Sort order: Ascending, by date.
String sortOrder = ProductContract.ProductEntry.COLUMN_DATE + " ASC";
Uri productForLocationUri = ProductContract.ProductEntry
.buildProductLocationWithStartDate(locationSetting, System.currentTimeMillis());
// Students: Uncomment the next lines to display what what you stored in the bulkInsert
Cursor cursor = mContext.getContentResolver()
.query(productForLocationUri, null, null, null, sortOrder);
swapCursor(cursor);
}
@Override
public ProductViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
{
View view = LayoutInflater.from(parent.getContext())
.inflate(R.layout.item, parent, false);
return new ProductViewHolder(view);
}
@Override
protected void onBindViewHolder(ProductViewHolder holder, Cursor cursor)
{
String imagePath = cursor.getString(ShopFragment.COL_PRODUCT_IMAGE);
String price = cursor.getString(ShopFragment.COL_PRODUCT_PRICE);
holder.productPrice.setText("US $" + price);
int height = mRandom.nextInt(50) + 500;
//Download image using picasso library
Picasso.with(mContext)
.load(imagePath)
.resize(500, height)
.error(R.drawable.placeholder)
.placeholder(R.drawable.placeholder)
.into(holder.productPhoto);
}
public static class ProductViewHolder extends RecyclerView.ViewHolder
{
CardView cv;
TextView productPrice;
ImageView productPhoto;
ProductViewHolder(View itemView)
{
super(itemView);
cv = (CardView) itemView.findViewById(R.id.cv);
productPrice = (TextView) itemView.findViewById(R.id.product_price);
productPhoto = (ImageView) itemView.findViewById(R.id.product_photo);
}
}
}
RecyclerViewCursorAdapter.java
import android.database.Cursor;
import android.database.DataSetObserver;
import android.support.v7.widget.RecyclerView;
import android.view.ViewGroup;
/**
* RecyclerView CursorAdapter
* <p>
* Created by Simon on 28/02/2016.
*/
public abstract class RecyclerViewCursorAdapter<VH extends RecyclerView.ViewHolder> extends
RecyclerView.Adapter<VH>
{
private Cursor mCursor;
private boolean mDataValid;
private int mRowIDColumn;
public RecyclerViewCursorAdapter(Cursor cursor)
{
setHasStableIds(true);
swapCursor(cursor);
}
public abstract VH onCreateViewHolder(ViewGroup parent, int viewType);
protected abstract void onBindViewHolder(VH holder, Cursor cursor);
@Override
public void onBindViewHolder(VH holder, int position)
{
if(!mDataValid){
throw new IllegalStateException("this should only be called when the cursor is valid");
}
if(!mCursor.moveToPosition(position)){
throw new IllegalStateException("couldn't move cursor to position " + position);
}
onBindViewHolder(holder, mCursor);
}
@Override
public long getItemId(int position)
{
if(mDataValid && mCursor != null && mCursor.moveToPosition(position)){
return mCursor.getLong(mRowIDColumn);
}
return RecyclerView.NO_ID;
}
@Override
public int getItemCount()
{
if(mDataValid && mCursor != null){
return mCursor.getCount();
}
else{
return 0;
}
}
protected Cursor getCursor()
{
return mCursor;
}
public void changeCursor(Cursor cursor)
{
Cursor old = swapCursor(cursor);
if(old != null){
old.close();
}
}
public Cursor swapCursor(Cursor newCursor)
{
if(newCursor == mCursor){
return null;
}
Cursor oldCursor = mCursor;
if(oldCursor != null){
if(mDataSetObserver != null){
oldCursor.unregisterDataSetObserver(mDataSetObserver);
}
}
mCursor = newCursor;
if(newCursor != null){
if(mDataSetObserver != null){
newCursor.registerDataSetObserver(mDataSetObserver);
}
mRowIDColumn = newCursor.getColumnIndexOrThrow("_id");
mDataValid = true;
notifyDataSetChanged();
}
else{
mRowIDColumn = -1;
mDataValid = false;
notifyDataSetChanged();
}
return oldCursor;
}
private DataSetObserver mDataSetObserver = new DataSetObserver()
{
@Override
public void onChanged()
{
mDataValid = true;
notifyDataSetChanged();
}
@Override
public void onInvalidated()
{
mDataValid = false;
notifyDataSetChanged();
}
};
}
关于java - 我可以在 RecyclerView 中将 Cursor Adapter 与 GridView 一起使用吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42381925/
我使用 Apache DBCP 来获取连接池,我每次都使用 PoolingDataSource 来获取连接。当我向数据库中插入一个对象时,它工作得很好,但是当我尝试从数据库中选择一个元素时,就会出现问
术语“幽灵光标”有点令人困惑;我的意思是鼠标光标不是由用户控制的,而是由程序创建并完全控制的。 这意味着屏幕上现在有 2 个光标,而不是一个。 屏幕上是否有超过 1 个光标的概念?如果是,有什么方法/
我在关闭 SQLite 类中的 Cursor 时遇到问题。当我在finally block (在DBHelper中)中关闭游标和SQLiteDatabase时,我无法读取其他类中的数据(无法重新打开关
我想连接两个游标,连接后第二个游标的内容也出现在第一个游标中。 正是我的代码, public final Uri AllImage_URI_Int = MediaStore.Images.Media.
.Net 中的 Cursor.Current 和 this.Cursor(this 是 WinForm)之间有区别吗?我一直使用 this.Cursor 并且运气很好,但我最近开始使用 CodeRus
我在 R Studio 中使用 Cobalt 编辑器主题,我通过更改相应的 .cache.css 文件对其进行了微调。背景颜色是深色的(我的选择),但文本光标(鼠标指针)也是深色的,所以很难看清。我在
我做了以下事情: import MySQLdb as mdb con = mdb.connect(hostname, username, password, dbname) cur = con.cur
当我通过 psql 客户端运行此 SQL 查询时,它会运行几秒钟(~90 秒,这是正常的,因为它是一个巨大的表)并返回,然后我可以检查我的行是否已成功插入。 SELECT merge_data('89
我是用pymongo来查询一个地区的所有元素(其实是在一张 map 上查询一个地区的所有 field )。我之前使用 db.command(SON()) 在球形区域中搜索,它可以返回一个字典,并且在字
intellij 调试:运行到光标处,忽略光标前的所有断点。有办法吗?假设光标前有很多断点,不方便一一禁用。 Line10 Line500 <-- cursor 最佳答案 Force Run
看看这两个 python 代码片段, conn = MySQLdb.connect(c['host'], c['user'], c['password'], c['db']) cur = conn.c
我有 2 个来自 SQLite 数据库中不同表的游标。我正在尝试将来自两个游标的数据放入一个 ListView 但每个游标的数据格式不同。 我考虑的是使用 MergeCursor 来组合两个游
许多 RDBMS 支持某种“CURSOR”类型。这些类型在从存储过程返回时最有用。 Oracle 中的示例: TYPE t_cursor_type IS REF CURSOR; CREATE PROC
我的应用程序结合了 Swing 和 JavaFX。我希望所有组件都使用相同的光标。 从 AWT 游标创建 JavaFX 游标的最佳方法是什么? 编辑:有一个名为 javafx.embed.swing.
我在这里遇到问题: conn = psycopg2.connect(conn_string) cursor = conn.cursor() sql = """ SELECT DISTINCT
我想检索我的 Sqlite3 数据库的前 100 行: connection = sqlite3.connect('aktua.db') cursor = connection.cursor() pr
我目前正在使用 libclang 和 C++ 编写一个简单的克隆检测器。 程序使用结构存储游标,包含指向翻译单元的指针和通过调用 clang_getCursorLocation(cursor) 获得的
我有一个 Observable返回单个 Cursor实例(Observable)。我正在尝试利用 ContentObservable.fromCursor获取 onNext 中每个游标的行回调。 我想
许多 RDBMS 支持某种“CURSOR”类型。这些类型在从存储过程返回时最有用。 Oracle 中的示例: TYPE t_cursor_type IS REF CURSOR; CREATE PROC
我正在为可视化工具编写拖动系统。单击并拖动时,它会移动您在窗口中看到的内容。当鼠标碰到面板的边缘时,我开始重新定位光标,使其永远不会离开框。如果光标在框内,它会跟踪光标所在的虚拟位置。这部分代码工作正
我是一名优秀的程序员,十分优秀!