gpt4 book ai didi

android - 查看 Binder 和 ClassCastException

转载 作者:行者123 更新时间:2023-11-29 00:27:35 25 4
gpt4 key购买 nike

您好,我在取景器方面遇到了一些问题,想知道是否有人可以提供帮助。

我有一个很好的 SQLite 数据库,我将小的缩略图图像存储在其中作为 blob。我知道 blob 正在保存,因为我可以在我的应用程序的另一个区域检索它们。

现在,我正在尝试使用 ViewBinder 将数据库中的图像绑定(bind)到我的自定义 ListView 。 (您可以将其视为一种联系人管理器布局,其中我有一个名称和号码列表以及相应的图像。)

我尝试了几种不同的方法,包括使用简单的游标适配器,根据我的研究,似乎创建我自己的 View 绑定(bind)器似乎是实现它的方法。该代码没有错误,但是在运行时我收到了 ClassCastException。

下面是我的主列表 Activity 的代码

  listViewCards = (ListView) findViewById(android.R.id.list); 
Cursor cursor = dbhelper.getAllContacts();



SimpleCursorAdapter myAdapter = new SimpleCursorAdapter(
getApplicationContext(),
R.layout.listview_each_item,
cursor,
new String[] { SQLiteAdapter.KEY_NAME,SQLiteAdapter.KEY_PHONE, SQLiteAdapter.KEY_COMPANYNAME},
new int[] { R.id.list_item_name,R.id.list_item_phone, R.id.list_item_companyname },0);

ImageView image = (ImageView) findViewById(R.id.list_item_image);
MyViewBinder mvb = new MyViewBinder();
mvb.setViewValue(image, cursor, cursor.getColumnIndex(SQLiteAdapter.KEY_IMAGE));
myAdapter.setViewBinder(mvb);
listViewCards.setAdapter(myAdapter);

还有我的自定义 View Binder

 public class MyViewBinder implements ViewBinder{

@Override
public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
ImageView image = (ImageView) view;
cursor.moveToFirst();
byte[] byteArray = cursor.getBlob(columnIndex);
if(image !=null){
image.setImageBitmap(BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length));
return false;
}
return true;
}

现在是 logcat

08-14 11:01:15.275: E/AndroidRuntime(2669): FATAL EXCEPTION: main
08-14 11:01:15.275: E/AndroidRuntime(2669): java.lang.ClassCastException: android.widget.TextView cannot be cast to android.widget.ImageView
08-14 11:01:15.275: E/AndroidRuntime(2669): at com .example.npacards.MyViewBinder.setViewValue(MyViewBinder.java:14)
08-14 11:01:15.275: E/AndroidRuntime(2669): at android.widget.SimpleCursorAdapter.bindView(SimpleCursorAdapter.java:146)
08-14 11:01:15.275: E/AndroidRuntime(2669): at android.widget.CursorAdapter.getView(CursorAdapter.java:250)
08-14 11:01:15.275: E/AndroidRuntime(2669): at android.widget.AbsListView.obtainView(AbsListView.java:2457)
08-14 11:01:15.275: E/AndroidRuntime(2669): at android.widget.ListView.measureHeightOfChildren(ListView.java:1250)
08-14 11:01:15.275: E/AndroidRuntime(2669): at android.widget.ListView.onMeasure(ListView.java:1162)
08-14 11:01:15.275: E/AndroidRuntime(2669): at android.view.View.measure(View.java:15473)
08-14 11:01:15.275: E/AndroidRuntime(2669): at android.widget.RelativeLayout.measureChild(RelativeLayout.java:602)
08-14 11:01:15.275: E/AndroidRuntime(2669): at android.widget.RelativeLayout.onMeasure(RelativeLayout.java:415)

第 14 行在我看来 Binder 是

    ImageView image = (ImageView) view; 

谁能帮我理解为什么这会产生一个 classCastExeption,因为传递到我的 View 联编程序中的 View 是

  ImageView image = (ImageView) findViewById(R.id.list_item_image);

非常感谢任何想法。

最佳答案

ViewBinder 将在创建适配器时为 to(适配器的构造函数)数组中声明的每个 View 调用。现在你没有传递 ImageView(通过它的 id)所以 ViewBinder 不会被 ImageView 调用,它只会被调用调用 ID 为 R.id.list_item_nameR.id.list_item_phoneR.id.list_item_companyname 的 View 。这就是你得到 ClassCastException 的原因,因为你错误地认为传递给 ViewBinder 的 View 是 ImageView(这是你犯的另一个错误,因为您不会查看传递给 ViewBinder 的 View 的 id 来查看哪个 View 当时设置为与来自 Cursor 的数据绑定(bind))。

要解决它,您需要让适配器知道您还希望绑定(bind)行中的 ImageView(注意额外的列和 ID):

SimpleCursorAdapter myAdapter = new SimpleCursorAdapter(
getApplicationContext(),
R.layout.listview_each_item,
cursor,
new String[] { SQLiteAdapter.KEY_NAME,SQLiteAdapter.KEY_PHONE, SQLiteAdapter.KEY_COMPANYNAME, SQLiteAdapter.KEY_IMAGE},
new int[] { R.id.list_item_name,R.id.list_item_phone, R.id.list_item_companyname, R.id.list_item_image},0);

然后更改 ViewBinder 来处理设置图像,让适配器自行绑定(bind)其他 View :

@Override
public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
if (view.getId() == R.id.list_item_image) { // we have our ImageView so bind the image
byte[] byteArray = cursor.getBlob(columnIndex);
((ImageView)view).setImageBitmap(BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length));
return true; // return true to let the adapter know that we handled this view on our own
}
return false; // return false for any other view so the adapter will bind the data on its own
}

这个:

mvb.setViewValue(image, cursor, cursor.getColumnIndex(SQLiteAdapter.KEY_IMAGE));

不正确。您不会自己调用 setViewValue(),适配器会在 getView() 方法中为每个具有 中 ID 的 View 调用它到 数组以在其上设置数据。

关于android - 查看 Binder 和 ClassCastException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18229007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com