ViewHolder没有将字符串设置为TextView的文本。请看细节

时间:2016-06-21 09:56:58

标签: android firebase-realtime-database android-viewholder firebase-storage fastadapter

我在我的android项目中使用FastAdapter

这就是我使用它的方式:

    public class HRequest extends AbstractItem<HRequest, HRequest.ViewHolder> {

        public String imageURL;

        public HRequest() {

        }

        public HRequest(String imageURL) {
            this.imageURL = imageURL;
        }

        // Fast Adapter methods
        @Override
        public int getType() {
            return R.id.recycler_view;
        }
        @Override
        public int getLayoutRes() {
            return R.layout.h_request_list_row;
        }
        @Override
        public void bindView(ViewHolder holder) {
            super.bindView(holder);

            holder.imageURL.setText(imageURL);

        }
        // Manually create the ViewHolder class
        protected static class ViewHolder extends RecyclerView.ViewHolder {

            TextView imageURL;

            public ViewHolder(View itemView) {
                super(itemView);
                imageURL = (TextView)itemView.findViewById(R.id.imageURL);

if (!imageURL.getText().toString().isEmpty()) {

                Toast.makeText(itemView.getContext(), imageUID.getText().toString(), Toast.LENGTH_SHORT).show();

if (imageURL.getText().toString().startsWith("https://firebasestorage.googleapis.com/") || imageURL.getText().toString().startsWith("content://")) {
                    Picasso.with(itemView.getContext())
                            .load(imageURL.getText().toString())
                            .into(homelessImage);
                } else {
                    Toast.makeText(itemView.getContext(), "some problem", Toast.LENGTH_SHORT).show();
                }

            } else {
                Toast.makeText(itemView.getContext(), "no imageUID found", Toast.LENGTH_SHORT).show();
            }

            }
        }

    }

以下是R.layout.h_request_list_row

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:app="http://schemas.android.com/apk/res-auto"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              xmlns:ads="http://schemas.android.com/apk/res-auto"
              android:orientation="vertical"
              xmlns:tools="http://schemas.android.com/tools">

            <TextView
                android:id="@+id/imageURL"
                android:text="imageURL"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>

</LinearLayout>

这里的问题是imageURL没有设置为从数据库中检索到的imageURL,而是设置为布局文件中定义的imageURL,因此没有下载图像。我按照这个要点:https://gist.github.com/puf/f49a1b07e92952b44f2dc36d9af04e3c

我确信String imageURL在这里:

public HRequest(String imageURL) {
            this.imageURL = imageURL;
        }

已成功获取从Firebase数据库检索到的网址。

请告诉我这里出了什么问题。

抱歉问题格式不正确。我还是初学者。

1 个答案:

答案 0 :(得分:1)

问题是您尝试在ViewHolder中加载图片。

在创建ViewHolder时,通过ImageUrl方法尚未设置bindView,因为在之后,这将被称为 { {1}}已创建。

因此您必须将图像加载逻辑移动到ViewHolder方法。 bindView只是ViewHolder有效地缓存视图,定义了侦听器以及所有在RecyclerView中使用的所有视图都“固定”的内容。

要使代码正常工作,您必须按以下方式更改代码:

RecyclerView

因此,每当项目在列表中显示并且必须将数据应用于其中时,public class HRequest extends AbstractItem < HRequest, HRequest.ViewHolder > { public String imageURL; public HRequest() {} public HRequest(String imageURL) { this.imageURL = imageURL; } // Fast Adapter methods @Override public int getType() { return R.id.recycler_view; } @Override public int getLayoutRes() { return R.layout.h_request_list_row; } @Override public void bindView(ViewHolder holder) { super.bindView(holder); holder.imageURL.setText(imageURL); if (!imageURL.isEmpty()) { Toast.makeText(holder.itemView.getContext(), imageURL, Toast.LENGTH_SHORT).show(); if (imageURL.startsWith("https://firebasestorage.googleapis.com/") || imageURL.startsWith("content://")) { Picasso.with(holder.itemView.getContext()).cancelRequest(holder.myImageView); Picasso.with(holder.itemView.getContext()).load(imageURL).into(holder.myImageView); } else { Toast.makeText(holder.itemView.getContext(), "some problem", Toast.LENGTH_SHORT).show(); } } else { Toast.makeText(holder.itemView.getContext(), "no imageUID found", Toast.LENGTH_SHORT).show(); } } // Manually create the ViewHolder class protected static class ViewHolder extends RecyclerView.ViewHolder { TextView imageURL; ImageView myImageView; public ViewHolder(View itemView) { super(itemView); imageURL = (TextView) itemView.findViewById(R.id.imageURL); myImageView = (ImageView) itemView.findViewById(R.id.myImageView); } } } 基本上会调用RecyclerView。同时将bindView本身添加到ImageView,您还应该先在ViewHolder上使用picasso 取消请求,然后才能应用新图片(我已添加)这个代码片段也是如此)