- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个回收服务适配器, View 是某种复杂的按钮,它是从一些 xml 文件创建的:
<?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:id="@+id/services_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginStart="20dp"
android:layout_marginTop="15dp"
android:gravity="center_horizontal"
android:orientation="vertical">
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/services_place_holder"
android:layout_width="@dimen/viewPlaceHolderWidth_services"
android:layout_height="@dimen/viewPlaceHolderHeight_services"
android:layout_marginTop="10dp"
android:background="@drawable/rounded_view_selector_services"
android:focusable="false"
android:gravity="center_horizontal"
android:orientation="vertical"
app:layout_constraintTop_toTopOf="@id/services_container">
<TextView
android:id="@+id/service_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:background="@drawable/rounded_text_view_for_services"
android:paddingBottom="2dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="2dp"
android:text="۲۳۲۲۲۳۵۶۶"
android:textAlignment="center"
android:textColor="@color/colorWhite"
android:textSize="12sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/service_image"
android:layout_width="38dp"
android:layout_height="38dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="6dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/service_price"
app:srcCompat="@drawable/placeholder_blue" />
<me.grantland.widget.AutofitTextView
android:id="@+id/service_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="11dp"
android:layout_marginStart="11dp"
android:layout_marginTop="2dp"
android:layout_marginBottom="2dp"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:maxLines="1"
android:text="پرستار"
android:textColor="@color/colorElahiyeBlue"
android:textSize="18sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/service_image"
app:minTextSize="6sp" />
</android.support.constraint.ConstraintLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="-120dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/services_gender_image"
android:layout_width="20dp"
android:layout_height="20dp"
android:src="@drawable/available_gender" />
<ImageView
android:id="@+id/services_prescription_image"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginLeft="7dp"
android:layout_marginStart="7dp"
android:src="@drawable/available_picture" />
<ImageView
android:id="@+id/services_info_image"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginLeft="7dp"
android:layout_marginStart="7dp"
android:src="@drawable/info" />
</LinearLayout>
</LinearLayout>
我有一个处理其中点击事件的服务适配器,数据集是使用改造从网络服务加载的,这没有问题,但我的问题是我想点击每个项目的背景和一些其他 UI 和它们的位置要更改和存储,当数据集低于 4 时一切正常,但是当数据集大约为 6 或更多时,会出现一些奇怪的行为,例如:当我单击一个项目时,另一个项目是clicked ,我管理点击的方式是通过我的 View Layout "services_container"或 "services_place_holder"的 isFocusable ,适配器代码在这里:
public class ServicesAdapter extends RecyclerView.Adapter<ServicesAdapter.ViewHolder> {
private List<Integer> selectedServices = new ArrayList<>();
private LayoutInflater mInflater;
private ItemClickListener mClickListener;
private Context mContext;
private int row_index = -1;
// data is passed into the constructor
// public FieldOfEmploymentAdapter(Context context, List<Integer> colors, List<String> servicesDataItemsList) {
ServicesAdapter(Context context, List<ServicesDataItems> servicesDataItemsList) {
mContext = context;
this.mInflater = LayoutInflater.from(context);
// this.mViewColors = colors;
this.servicesDataItemsList = servicesDataItemsList;
}
// inflates the row layout from xml when needed
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = mInflater.inflate(R.layout.services_items, parent, false);
ViewHolder viewHolder = new ViewHolder(view);
return viewHolder;
}
// binds the data to the view and textview in each row
@Override
public void onBindViewHolder(final ViewHolder holder, final int position) {
// int color = mViewColors.get(position);
final ServicesDataItems servicesDataItems = servicesDataItemsList.get(position);
holder.linLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
row_index = position;
notifyDataSetChanged();
}
});
if (row_index == position) {
Toast.makeText(mContext, "Pos: " + position + " , GetAdapterPos: " + holder.getAdapterPosition(), Toast.LENGTH_SHORT).show();
// Toast.makeText(mContext, "SSSS" + MainActivity.servicesNumber.getText().toString(), Toast.LENGTH_SHORT).show();
int servicesNumber = Integer.parseInt(MainActivity.servicesNumber.getText().toString());
// Toast.makeText(mContext, "is instance of BitmapDrawable= " + holder.constraintLayout.isFocusable() + " ====== ", Toast.LENGTH_SHORT).show();
if (holder.linLayout.isSelected()){
Toast.makeText(mContext, "IsSelected ", Toast.LENGTH_SHORT).show();
}
if (holder.linLayout.isFocusable()) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
holder.constraintLayout.setBackground(ContextCompat.getDrawable(mContext, R.drawable.rounded_view_selector_services));
holder.linLayout.setFocusable(false);
MainActivity.servicesNumber.setText(String.valueOf(--servicesNumber));
removeSelectedService(position);
} else {
holder.constraintLayout.setBackgroundDrawable(ContextCompat.getDrawable(mContext, R.drawable.rounded_view_selector_services));
holder.linLayout.setFocusable(false);
MainActivity.servicesNumber.setText(String.valueOf(--servicesNumber));
removeSelectedService(position);
}
} else {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
holder.constraintLayout.setBackground(ContextCompat.getDrawable(mContext, R.drawable.rounded_view_selector_services_selected));
holder.linLayout.setFocusable(true);
MainActivity.servicesNumber.setText(String.valueOf(++servicesNumber));
selectedServices.add(position);
} else {
holder.constraintLayout.setBackgroundDrawable(ContextCompat.getDrawable(mContext, R.drawable.rounded_view_selector_services_selected));
holder.linLayout.setFocusable(true);
MainActivity.servicesNumber.setText(String.valueOf(++servicesNumber));
selectedServices.add(position);
}
}
if (servicesNumber > 0) {
Drawable selectLocation = ContextCompat.getDrawable(mContext, R.drawable.rbtn_location_active);
ColorStateList colorStateList = ContextCompat.getColorStateList(mContext, R.color.rbtn_text_color_button);
new EnableLocationSelectButton(selectLocation, colorStateList).invoke();
}
if (servicesNumber == 0) {
Drawable selectLocation = ContextCompat.getDrawable(mContext, R.drawable.rbtn_location_dimmed);
ColorStateList colorStateList = ContextCompat.getColorStateList(mContext, R.color.ElahiyeGray);
new DisableLocationSelectButton(selectLocation, colorStateList).invoke();
}
boolean isPrescriptionImageVisible = false;
boolean isGenderImageVisible = false;
for (int selected : selectedServices) {
if (servicesDataItemsList.get(selected).has_prescriptions_image()) {
isPrescriptionImageVisible = true;
if (MainActivity.prescriptionImageHolder.getVisibility() == View.INVISIBLE) {
MainActivity.gender_prescription_selection.setVisibility(View.VISIBLE);
MainActivity.gender_prescription_separator.setVisibility(View.VISIBLE);
MainActivity.doctorPrescription.setVisibility(View.VISIBLE);
}
}
if (servicesDataItemsList.get(selected).hasGender()) {
isGenderImageVisible = true;
MainActivity.gender_prescription_selection.setVisibility(View.VISIBLE);
MainActivity.gender_prescription_separator.setVisibility(View.VISIBLE);
MainActivity.genderSelection.setVisibility(View.VISIBLE);
}
}
if (!isPrescriptionImageVisible) {
MainActivity.doctorPrescription.setVisibility(View.INVISIBLE);
MainActivity.prescriptionImageHolder.setVisibility(View.INVISIBLE);
}
if (!isGenderImageVisible) {
MainActivity.genderSelection.setVisibility(View.INVISIBLE);
}
if (!isPrescriptionImageVisible && !isGenderImageVisible) {
MainActivity.gender_prescription_selection.setVisibility(View.INVISIBLE);
MainActivity.gender_prescription_separator.setVisibility(View.INVISIBLE);
}
}
holder.service_name.setText(servicesDataItems.getServices_name());
holder.service_price.setText(servicesDataItems.getServices_price());
}
private void removeSelectedService(int position) {
int index = 0;
for (int selected : selectedServices) {
if (selected == position) {
selectedServices.remove(index);
return;
}
index++;
}
}
// total number of rows
@Override
public int getItemCount() {
return servicesDataItemsList.size();
}
// stores and recycles views as they are scrolled off screen
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
// ImageView myImageView;
TextView service_name;
TextView service_price;
ConstraintLayout constraintLayout;
LinearLayout linLayout;
ImageView serviceGender;
ImageView servicePrescription;
ViewHolder(View itemView) {
super(itemView);
// myImageView = itemView.findViewById(R.id.service_image);
service_name = itemView.findViewById(R.id.service_name);
service_price = itemView.findViewById(R.id.service_price);
constraintLayout = itemView.findViewById(R.id.services_place_holder);
linLayout = itemView.findViewById(R.id.services_container);
serviceGender = itemView.findViewById(R.id.services_gender_image);
servicePrescription = itemView.findViewById(R.id.services_prescription_image);
itemView.setOnClickListener(this);
}
}
请告诉我如何正确管理每个项目的 OnClick 监听器?我还阅读了所有其他主题,但没有一个对我有帮助。
最佳答案
我已经查看了您的代码,我想我已经找到了问题所在。您有一个条件,您可以检查 row_index
是否等于 position
。但是,我没有看到此声明的任何其他部分。
当您的数据集很小时,它可以工作,小到您不必滚动它。但是,当您的数据集很大并且您必须滚动它时,它应该有一些随机行为,因为您没有指定语句的 else
部分。每次滚动时 View 都会被回收,并且在实现 onBindViewHolder
函数时,您需要准确地告诉每行要加载的内容。
因此,我建议您即使不满足条件(即 else 部分)也对 holder 项目进行分配。
if (row_index == position) {
// Your current implementation
} else {
// Set the views accordingly when the above condition is not met.
}
更新
如果你想在你的 RecyclerView
中实现多个项目选择,那么你可能需要保留一个单独的数组来跟踪所选项目,然后根据轨道回收项目你保存在你的数组中。例如,让我们考虑一个数组来跟踪点击。
public int[] clickTrack = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
现在,当您单击一个项目时,只需将单击的轨迹保存到您的数组中。
@override
public void onClick(View v) {
if(clickTrack[position] == 0) clickTrack[position] = 1;
else clickTrack[position] = 0;
notifyDataSetChanged();
}
现在,当您已经单击了一些项目时,数组将看起来像这样。
{0, 1, 0, 1, 1, 0, 1, 0, 1, 0}
在您的 onBindViewHolder
中,只需根据您在跟踪点击的数组中找到的值展开项目。
if(clickTrack[position] == 1) someView.expand();
else someView.collapse();
这是一个示例实现。我希望你明白了。这是一个 nice answer实现相同。你也可以考虑去那里看看。
关于java - 单击 recyclerAdapter 在大型数据集上工作很奇怪,但在小型数据集上工作正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49591610/
我正在编写一个具有以下签名的 Java 方法。 void Logger(Method method, Object[] args); 如果一个方法(例如 ABC() )调用此方法 Logger,它应该
我是 Java 新手。 我的问题是我的 Java 程序找不到我试图用作的图像文件一个 JButton。 (目前这段代码什么也没做,因为我只是得到了想要的外观第一的)。这是我的主课 代码: packag
好的,今天我在接受采访,我已经编写 Java 代码多年了。采访中说“Java 垃圾收集是一个棘手的问题,我有几个 friend 一直在努力弄清楚。你在这方面做得怎么样?”。她是想骗我吗?还是我的一生都
我的 friend 给了我一个谜语让我解开。它是这样的: There are 100 people. Each one of them, in his turn, does the following
如果我将使用 Java 5 代码的应用程序编译成字节码,生成的 .class 文件是否能够在 Java 1.4 下运行? 如果后者可以工作并且我正在尝试在我的 Java 1.4 应用程序中使用 Jav
有关于why Java doesn't support unsigned types的问题以及一些关于处理无符号类型的问题。我做了一些搜索,似乎 Scala 也不支持无符号数据类型。限制是Java和S
我只是想知道在一个 java 版本中生成的字节码是否可以在其他 java 版本上运行 最佳答案 通常,字节码无需修改即可在 较新 版本的 Java 上运行。它不会在旧版本上运行,除非您使用特殊参数 (
我有一个关于在命令提示符下执行 java 程序的基本问题。 在某些机器上我们需要指定 -cp 。 (类路径)同时执行java程序 (test为java文件名与.class文件存在于同一目录下) jav
我已经阅读 StackOverflow 有一段时间了,现在我才鼓起勇气提出问题。我今年 20 岁,目前在我的家乡(罗马尼亚克卢日-纳波卡)就读 IT 大学。足以介绍:D。 基本上,我有一家提供簿记应用
我有 public JSONObject parseXML(String xml) { JSONObject jsonObject = XML.toJSONObject(xml); r
我已经在 Java 中实现了带有动态类型的简单解释语言。不幸的是我遇到了以下问题。测试时如下代码: def main() { def ks = Map[[1, 2]].keySet()
一直提示输入 1 到 10 的数字 - 结果应将 st、rd、th 和 nd 添加到数字中。编写一个程序,提示用户输入 1 到 10 之间的任意整数,然后以序数形式显示该整数并附加后缀。 public
我有这个 DownloadFile.java 并按预期下载该文件: import java.io.*; import java.net.URL; public class DownloadFile {
我想在 GUI 上添加延迟。我放置了 2 个 for 循环,然后重新绘制了一个标签,但这 2 个 for 循环一个接一个地执行,并且标签被重新绘制到最后一个。 我能做什么? for(int i=0;
我正在对对象 Student 的列表项进行一些测试,但是我更喜欢在 java 类对象中创建硬编码列表,然后从那里提取数据,而不是连接到数据库并在结果集中选择记录。然而,自从我这样做以来已经很长时间了,
我知道对象创建分为三个部分: 声明 实例化 初始化 classA{} classB extends classA{} classA obj = new classB(1,1); 实例化 它必须使用
我有兴趣使用 GPRS 构建车辆跟踪系统。但是,我有一些问题要问以前做过此操作的人: GPRS 是最好的技术吗?人们意识到任何问题吗? 我计划使用 Java/Java EE - 有更好的技术吗? 如果
我可以通过递归方法反转数组,例如:数组={1,2,3,4,5} 数组结果={5,4,3,2,1}但我的结果是相同的数组,我不知道为什么,请帮助我。 public class Recursion { p
有这样的标准方式吗? 包括 Java源代码-测试代码- Ant 或 Maven联合单元持续集成(可能是巡航控制)ClearCase 版本控制工具部署到应用服务器 最后我希望有一个自动构建和集成环境。
我什至不知道这是否可能,我非常怀疑它是否可能,但如果可以,您能告诉我怎么做吗?我只是想知道如何从打印机打印一些文本。 有什么想法吗? 最佳答案 这里有更简单的事情。 import javax.swin
我是一名优秀的程序员,十分优秀!