- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Cloud Firebase 进行删除。我有一个删除文档的代码:
db.collection ( "cities"). document ( "DC")
.Delete ()
.addOnSuccessListener (new OnSuccessListener <Void> () {
@Override
public void onSuccess (Void aVoid) {
Log.d (TAG, "DocumentSnapshot successfully deleted!");
}
})
.addOnFailureListener (new OnFailureListener () {
@Override
public void onFailure (@NonNull Exception e) {
Log.w (TAG, "Error deleting document", e);
}
});
我需要获取当前在 RecyclerView 中的文档的 id 值。我希望它能与 onLongPress 一起使用。
要处理长按回收站 View 的项目 - 我找到了这段代码:
class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener, View.OnLongClickListener {
private Article article;
private TextView nameTextView;
public ViewHolder (View itemView) {
super (itemView);
itemView.setOnClickListener (this);
itemView.setOnLongClickListener (this);
nameTextView = (TextView) itemView.findViewById (R.id.grid_item_article_name_textView);
}
public void bind (Article article) {
this.article = article;
nameTextView.setText (article.getName ());
}
@Override
public void onClick (View view) {
// Context context = view.getContext ();
// article.getName ()
}
@Override
public boolean onLongClick (View view) {
// Handle long click
// Return true to indicate the click was handled
return true;
}
}
如何从 Firestore 获取文档 ID?
编辑:MainFragment - https://codepaste.net/idih7i主要 Activity - https://codepaste.net/9q019e
最佳答案
您可以使用从 Firestore Query 生成的response 对象获取文档 ID,以下是示例代码:
String myId = response.getSnapshots().getSnapshot(position).getId();
这将从 ViewHolder 中为您提供文档的 ID。
关于java - 来自 RecyclerView 的 Cloud Firestore 文档的句柄 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48828131/
我设置了 Helm 柄和 Helm 柄。我有tiller-deploy。昨天,我可以定期运行了。但今天我收到此错误消息 Error: could not find a ready tiller pod
我以前已将分er安装到特定的 namespace 中。 我设置了一个环境变量来设置'tiller'命名空间-但我不记得该环境变量的名称-而且似乎无法通过网络搜索找到它。 这是什么 key ? 最佳答案
当我在 View 模型中使用如下界面时 class MainViewModel @ViewModelInject constructor( private val trafficImagesR
我正在尝试找到如何在某个 fragment 相关场景中定义 Hilt 的解决方案。我有以下设置: Activity 父 fragment 1 子 fragment 1 子 fragment 2 ...
Hilt 指出如果没有@Provides 注解就不能提供这个接口(interface): interface PlannedListRepository { fun getAllLists()
我的问题非常简单明了:两个注释/示例之间有什么区别: 例子一 @Singleton class MySingletonClass() {} @Module @InstallIn(FragmentCom
我是一名优秀的程序员,十分优秀!