如何根据特定条件修改Action Bar按钮Activity
How to modify Action Bar buttons based on a specific Condition in a certain Activity
我正在使用 firebase 快速入门代码示例开发 android 应用程序。
我的应用程序是一个电子拍卖应用程序,向用户显示了三个选项卡 Fixed Price 、Auction 和 My Listing。前两个选项卡包含所有社区在相应类别中的 post 固定价格或拍卖。
“我的列表”选项卡包含用户 post 编辑的 post。帖子出现在卡片视图中。如果单击 post,则会在详细显示整个 post 的地方启动 activity。我想在详细视图 activity 的操作栏中显示一个删除图标,这样删除图标只有在当前登录的用户正在查看他自己的 post 时才可见。也就是说,删除 post 的能力应该只属于用户。我正在为数据库使用 firebase。我已经设置了删除过程,但我需要 link 它具有此功能。
请帮忙
A quick solution would be to attach each user's uid
to their post
then compare it to that of the current user when retrieved.
if(post_uid==current_uid){
showdelete();
}
我正在使用 firebase 快速入门代码示例开发 android 应用程序。
我的应用程序是一个电子拍卖应用程序,向用户显示了三个选项卡 Fixed Price 、Auction 和 My Listing。前两个选项卡包含所有社区在相应类别中的 post 固定价格或拍卖。
“我的列表”选项卡包含用户 post 编辑的 post。帖子出现在卡片视图中。如果单击 post,则会在详细显示整个 post 的地方启动 activity。我想在详细视图 activity 的操作栏中显示一个删除图标,这样删除图标只有在当前登录的用户正在查看他自己的 post 时才可见。也就是说,删除 post 的能力应该只属于用户。我正在为数据库使用 firebase。我已经设置了删除过程,但我需要 link 它具有此功能。
请帮忙
A quick solution would be to attach each
user's uid
to their post then compare it to that of the current user when retrieved.
if(post_uid==current_uid){
showdelete();
}