- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个水平回收器 View ,其中加载了项目。之后,我需要选择该项目并执行点击事件。到这个存档(代码在下面可用),现在我想改变点击项目的颜色,剩下的项目应该被取消选择。如果我没有正确查询,请道歉。
这一切都是使用 Kotlin 的 Androidx Recyclerview 构建的。这是 sample code !我正在寻找一个解决方案来扩展它以选择项目并更改其颜色。
使用 kotlin 编码的 Android Activity
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.view.View
import android.view.WindowManager
import androidx.recyclerview.widget.LinearLayoutManager
import kotlinx.android.synthetic.main.activity_sample.*
import androidx.recyclerview.widget.RecyclerView
class SampleActivity : AppCompatActivity() {
val bottle_name: ArrayList<String> = ArrayList()
val bottle_img: ArrayList<Int> = ArrayList()
val bottle_type: ArrayList<String> = ArrayList()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_sample)
addBottles()
val adptr = BottlesAdaptor(bottle_name, bottle_img, bottle_type);
bottles_list.adapter = adptr
val layoutManager = LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false)
val recyclerView = bottles_list
recyclerView.setLayoutManager(layoutManager)
}
override fun onWindowFocusChanged(hasFocus: Boolean) {
super.onWindowFocusChanged(hasFocus)
if (hasFocus) {
hideSystemUI()
}
}
private fun hideSystemUI() {
val decorView = window.decorView
decorView.systemUiVisibility = (
View.SYSTEM_UI_FLAG_IMMERSIVE
or View.SYSTEM_UI_FLAG_LAYOUT_STABLE
or View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
or View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
or View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
or View.SYSTEM_UI_FLAG_FULLSCREEN
)
window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
}
fun addBottles(){
bottle_name.add("Coca1");
bottle_name.add("Coca2");
bottle_name.add("Coca3");
bottle_name.add("Coca4");
bottle_name.add("Coca5");
bottle_name.add("Coca6");
bottle_name.add("Coca7");
bottle_name.add("Coca8");
bottle_type.add("cooldrink");
bottle_type.add("cooldrink");
bottle_type.add("cooldrink");
bottle_type.add("cooldrink");
bottle_type.add("cooldrink");
bottle_type.add("wine");
bottle_type.add("wine");
bottle_type.add("wine");
bottle_img.add(R.drawable.coca1);
bottle_img.add(R.drawable.coca2);
bottle_img.add(R.drawable.coca3);
bottle_img.add(R.drawable.coca4);
bottle_img.add(R.drawable.coca5);
bottle_img.add(R.drawable.coca6);
bottle_img.add(R.drawable.coca7);
bottle_img.add(R.drawable.coca8);
}
使用 Kotlin 编码的 Bottles 适配器
import android.content.Context
import android.util.Log
import android.view.LayoutInflater
import android.view.ViewGroup
import android.view.View
import android.widget.ArrayAdapter
import android.widget.ImageView
import android.widget.TextView
import androidx.recyclerview.widget.LinearLayoutManager
import kotlinx.android.synthetic.main.bottle_list_item.view.*
import androidx.recyclerview.widget.RecyclerView
class BottlesAdaptor(private val dataSet: ArrayList<String>, private val dataSet2: ArrayList<Int>, private val dataSet3: ArrayList<String>) :
RecyclerView.Adapter<BottlesAdaptor.ViewHolder>() {
/**
* Provide a reference to the type of views that you are using (custom ViewHolder)
*/
class ViewHolder(v: View) : RecyclerView.ViewHolder(v) {
val textView: TextView
val imageView: ImageView
val textView2:TextView
init {
// Define click listener for the ViewHolder's View.
v.setOnClickListener {
Log.d(TAG, "Element $adapterPosition clicked.")
// I have tried this but it is not giving me the opportunity to select a color for the selected item
if (v.id==adapterPosition){
v.setBackgroundResource(R.drawable.bottle_card_selected);
}
else{
v.setBackgroundResource(R.drawable.bottle_card);
}
}
textView = v.findViewById(R.id.bottle_list_text)
imageView = v.findViewById(R.id.bottle_list_img)
textView2 = v.findViewById(R.id.bottle_list_subtext)
}
}
// Create new views (invoked by the layout manager)
override fun onCreateViewHolder(viewGroup: ViewGroup, viewType: Int): ViewHolder {
// Create a new view.
val v = LayoutInflater.from(viewGroup.context)
.inflate(R.layout.bottle_list_item, viewGroup, false)
return ViewHolder(v)
}
// Replace the contents of a view (invoked by the layout manager)
override fun onBindViewHolder(viewHolder: ViewHolder, position: Int) {
Log.d(TAG, "Element $position set.")
// Get element from your dataset at this position and replace the contents of the view
// with that element
viewHolder.textView.text = dataSet[position]
viewHolder.textView2.text = dataSet3[position]
viewHolder.imageView.setImageResource(dataSet2[position])
}
// Return the size of your dataset (invoked by the layout manager)
override fun getItemCount() = dataSet.size
companion object {
private val TAG = "CustomAdapter"
}
}
我期待一种更好的解决方案。如果可能的话,还希望禁用特定按钮。它应该给recyclerview的可选项目的选项
最佳答案
首先,将以下内容添加到您的 build.gradle
(应用级):
implementation "androidx.recyclerview:recyclerview-selection:1.0.0
在 RecyclerView Adapter BottlesAdaptor
中设置选择跟踪器:
private var tracker: SelectionTracker<Long>? = null
fun setTracker(tracker: SelectionTracker<Long>?) {
this.tracker = tracker
}
在您的 Activity SampleActivity
中使用以下方法来实现选择跟踪器:
private fun trackSelectedItems() {
tracker = SelectionTracker.Builder<Long>(
"selection-1",
bottles_list,
ItemIdKeyProvider(bottles_list),
ItemLookup(bottles_list),
StorageStrategy.createLongStorage()
).withSelectionPredicate(SelectionPredicates.createSelectAnything())
.build()
adptr?.setTracker(tracker)
tracker?.addObserver(object: SelectionTracker.SelectionObserver<Long>() {
override fun onSelectionChanged() {
//handle the selected according to your logic
}
})
}
像这样添加 ItemIdKeyProvider()
:
inner class ItemIdKeyProvider(private val recyclerView: RecyclerView)
: ItemKeyProvider<Long>(SCOPE_MAPPED) {
override fun getKey(position: Int): Long? {
return recyclerView.adapter?.getItemId(position)
?: throw IllegalStateException("RecyclerView adapter is not set!")
}
override fun getPosition(key: Long): Int {
val viewHolder = recyclerView.findViewHolderForItemId(key)
return viewHolder?.layoutPosition ?: RecyclerView.NO_POSITION
}
}
添加 ItemLookup
,如下所示:
inner class ItemLookup(private val rv: RecyclerView)
: ItemDetailsLookup<Long>() {
override fun getItemDetails(event: MotionEvent)
: ItemDetails<Long>? {
val view = rv.findChildViewUnder(event.x, event.y)
if(view != null) {
return (rv.getChildViewHolder(view) as BottlesAdaptor.ViewHolder)
.getItemDetails()
}
return null
}
}
由于您还提到 现在我想更改被点击项目的颜色并且应该取消选择剩余项目,因此在您的 Adapter 的
onBindViewHolder()` 中添加以下代码:
tracker?.let {
if (it.isSelected(position.toLong()) ) {
it.select(position.toLong())
//changing the color of the clicked/selected item to light gray
//parent.setBackgroundColor( ContextCompat.getColor(context, R.color.extra_light_gray))
} else {
it.deselect(position.toLong())
// set color white
//parent.setBackgroundColor( ContextCompat.getColor(context, R.color.white))
}
}
关于android - 如何在 androidx.recyclerview.widget 中使用 androidx.recyclerview.selection。或者如何在 android 中使用 kotlin 在 recyclerview 中选择一个项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57442809/
我回到我的 Android 项目来完成它的工作,突然我收到此错误消息 “无法解析 androidxAffected 模块:app” “错误:无法解析:androidx。受影响的模块:应用程序” 这是我
我今天尝试使用 Android Studio 中的“重构 -> 迁移到 AndroidX”选项将我当前的项目迁移到 AndroidX,每当我尝试编译我的应用程序时,我都会收到一个 Program ty
当我尝试构建应用程序时,它在构建选项卡上给了我这个错误 More than one file was found with OS independent path 'META-INF/androidx
我在尝试构建 Android 应用程序时遇到以下问题。我遇到了一些关于强制或使用手动依赖项解决策略的 android 帖子。这似乎并没有解决问题。 有人问过类似的问题:Similar stack ov
我刚刚通过 Android Studio 菜单选项 Refactor -> Refactor to AndroidX 迁移到 androidx 我收到以下错误: android.view.Inflat
我用 kotlin 开始新的 android 应用程序项目。我的 sdk gradle 配置是 compileSdkVersion 29 和 buildToolsVersion "29.0.1" 我试
我迁移到 AndroidX,然后如果我尝试使用 API 29 将项目运行到模拟器中,我会收到错误。 API 28 及之前的模拟器/真实设备没有问题。 java.lang.RuntimeExceptio
我正在开发 Android MVVM 应用程序。我只是手动切换到 androidx 库。这是我的 build.gradle 中的库: implementation 'com.google.code.g
在迁移到 AndroidX 并将所有 AndriodX 包更新到最新版本后,构建将失败,在 obj 中的构建生成的 XML 文件中显示三个类似的错误文件夹: \obj\Debug\100\lp\117
从 更新导航组合依赖后2.4.0-alpha03 至 2.4.0-alpha05 在尝试在可组合屏幕之间导航(例如从 taskComposable 导航到 listComposable 屏幕)后,我遇
我刚刚通过 Android Studio 菜单选项 重构 -> 重构到 AndroidX 迁移到 androidx 我收到以下错误: android.view.InflateException: Bi
我创建了一个 Android 应用程序,并从 Gallery 添加了“Navigation Drawer Activity”,我删除并重命名了菜单项。当我单击抽屉 Activity 中的任何菜单项启动
我正在制作一个项目,但是当我编译我的项目并在 Android Studio 上启动应用程序时,我的应用程序崩溃了。 在我的 Logcat 错误中 Process: com.passionategeek
完整的堆栈仅包括 android 核心代码: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean and
将项目迁移到 AndroidX 后出现以下错误:程序类型已经存在androidx.concurrent.futures.DirectExecutor 我的应用Gradle如下: configu
我想在 Play 商店中更新应用程序的版本,但在测试中我开始收到此错误。 Superclass androidx.core.app.f of androidx.activity.ComponentAc
AndoirdX 升级后出现错误。 android.databinding.tool.util.LoggedErrorException: failure, see logs for details.
将项目迁移到 AndroidX 后我遇到了这个崩溃 Unable to start activity ComponentInfo{oackagename/com.paymob.acceptsdk.P
我的导航 Controller 中有此错误,我已经更改了 XML 中的声明,但没有帮助,我更改了 Fragment 为 FragmenContainer,但没有帮助。谁能帮我解决这个错误? 日志: E
我创建了一个水平回收器 View ,其中加载了项目。之后,我需要选择该项目并执行点击事件。到这个存档(代码在下面可用),现在我想改变点击项目的颜色,剩下的项目应该被取消选择。如果我没有正确查询,请道歉
我是一名优秀的程序员,十分优秀!