FirebaseRecyclerAdaptor 不会填充 recyclerview
Posted
技术标签:
【中文标题】FirebaseRecyclerAdaptor 不会填充 recyclerview【英文标题】:FirebaseRecyclerAdaptor won't populate recyclerview 【发布时间】:2018-08-23 16:23:24 【问题描述】:您好,我对 firebase 比较陌生,我已经看到有针对片段的 firebase recyclerview 适配器的新实现。我的问题是该应用程序不会填充我的回收站视图。这是我的代码
我的片段
public class DummyFragment extends android.support.v4.app.Fragment
private FirebaseRecyclerAdapter<Product, ProductViewHolder> mFirebaseAdapter;
private RecyclerView mProduceList = null;
private View rootView;
private Context c;
private LinearLayoutManager manager;
public DummyFragment()
public static DummyFragment newInstance()
DummyFragment fragment = new DummyFragment();
return fragment;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState)
rootView = inflater.inflate(R.layout.dummy_fragment, container, false);
FirebaseApp.initializeApp(c);
mProduceList = rootView.findViewById(R.id.recyclerView);
mProduceList.hasFixedSize();
mProduceList.setLayoutManager(new LinearLayoutManager(getActivity()));
DatabaseReference productRef = FirebaseDatabase.getInstance().getReference().child("Product1");
Query productQuery = productRef.orderByKey();
FirebaseRecyclerOptions productOptions = new FirebaseRecyclerOptions.Builder<Product>().setQuery(productQuery, Product.class).build();
mFirebaseAdapter = new FirebaseRecyclerAdapter<Product, ProductViewHolder>(productOptions)
@Override
public ProductViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
View rootView = LayoutInflater.from(c).inflate(R.layout.dummy_fragment, parent, false);
return new ProductViewHolder(rootView);
@Override
protected void onBindViewHolder(ProductViewHolder viewHolder, int position, Product model)
viewHolder.setTitle(model.getTitle());
viewHolder.setDesc(model.getDesc());
;
mProduceList.setAdapter(mFirebaseAdapter);
return rootView;
;
@Override
public void onStart()
super.onStart();
mFirebaseAdapter.startListening();
@Override
public void onStop()
super.onStop();
mFirebaseAdapter.stopListening();
public static class ProductViewHolder extends RecyclerView.ViewHolder
View mView;
public ProductViewHolder(View itemView)
super(itemView);
mView = itemView;
public void setTitle(String name)
TextView post_name = (TextView) mView.findViewById(R.id.productTitle);
post_name.setText(name);
public void setDesc(String type)
TextView post_type = (TextView) mView.findViewById(R.id.productDesc);
post_type.setText(type);
产品类别
public class Product
String Title,Description;
private String image;
public Product()
public Product(String title,String desc, String image)
Title = title;
Description = desc;
this.image = image;
public String getTitle()
return Title;
public void setTitle(String title)
Title = title;
public String getDesc()
return Description;
public void setDesc(String desc)
Description = desc;
public String getImage()
return image;
public void setImage(String image)
this.image = image;
还有我的清单
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我看不出它不会填充 recyclerview 的原因,但我想我错过了一些东西。这也是我在控制台中的一条消息 W/FA:服务连接失败:ConnectionResultstatusCode=SERVICE_VERSION_UPDATE_REQUIRED, resolution=null, message=null I/FA:未找到跟踪代码管理器,因此不会使用 D/FA:记录事件 (FE):screen_view(_vs),Bundle[firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=-7534482907761949523] V/FA:连接到远程服务 W/GooglePlayServicesUtil:Google Play 服务已过期。需要 11910000 但找到 9879470 V/FA:处理排队服务任务:4 E/FA:丢弃数据。发送应用启动失败 E/FA: 获取应用实例 ID 失败 E/FA:无法将当前屏幕发送到服务 E/FA:丢弃数据。无法将事件发送到服务 [03-15 00:06:26.003 5399:5417 D/] HostConnection::get() 新主机连接建立 0x98c0ac40, tid 5417
【问题讨论】:
【参考方案1】:按照以下任一操作:
-
大部分 Firebase 服务都需要更新的 Google Play 服务,因此
您需要在 android 模拟器上测试它,而不是在 Geneymotion 上。
如果您使用电话身份验证,您唯一的选择是使用真实的
设备。
有时您需要更新您的真实设备 Google
播放服务:为此,最简单的方法是使用应用程序
称为:播放服务信息
【讨论】:
你好,有没有可能是我的依赖有问题? 我用的是安卓模拟器 从 Android Studio 2.3.2 开始,有一个预装的 Play 商店,打开它并安装 Play Services Info 应用程序,它将帮助您检查和更新 Play Services。 好的,我现在正在这样做,除此之外,您是否发现代码中有任何缺陷?【参考方案2】:要解决这个问题,请删除以下代码行:
mProduceList.hasFixedSize();
如需了解更多信息,请在Github 上回答此类似问题。
【讨论】:
以上是关于FirebaseRecyclerAdaptor 不会填充 recyclerview的主要内容,如果未能解决你的问题,请参考以下文章