gpt4 book ai didi

java - 比较列表和从 Spinner android 中删除项目的逻辑

转载 作者:行者123 更新时间:2023-11-29 08:22:26 25 4
gpt4 key购买 nike

目前我有两个列表,一个是我自己制作的,另一个是来自 Parse 的。

第一个列表...

public static List<String> getHoraDia(){
List<String> list = new ArrayList<>();
list.add("05:00am");
list.add("05:30am");
list.add("06:00am");
list.add("06:30am");
list.add("07:00am");
list.add("07:30am");
list.add("08:00am");
list.add("08:30am");
list.add("09:00am");
list.add("09:30am");
list.add("10:00am");
list.add("10:30am");
list.add("11:00am");
list.add("11:30am");
list.add("12:00am");
list.add("12:30am");
list.add("1:00pm");
list.add("1:30pm");
list.add("2:00pm");
list.add("2:30pm");
list.add("3:00pm");
list.add("3:30pm");
list.add("4:00pm");
list.add("4:30pm");
list.add("5:00pm");
list.add("5:30pm");

return list;
}
}

另一个列表有上午 8:00 和 9:30,我的第一个问题是我可以比较不同大小的列表吗???。

这就是我此刻的想法..

int contador = 0;
for (String horas : horasList) {
Log.i("HORA","este es horas"+horas);
for (ParseObject citas : citasTaller) {
String horaCita = citas.getString("Hora");
Log.i("HORA","este es horasCita"+horaCita);
if(horas.equals(horaCita)){

}
contador++;
}

}

还没想好在 if 语句中放什么..

我的目标是,如果字符串在 horasList 和 citasTaller 中,则要从 Spinner 中删除。我完成了将随机位置放入其中...

 horasList.remove(3);
adapter.notifyDataSetChanged();

所以它应该是这样的

horasList.remove(horaCita)

一定有更好的方法来做到这一点。按照这个想法顺序,我需要从 horasList 中删除上午 8:00 和上午 9:30。

顺便说一句,这是我做的..

horasList = UtilAppFuntions.getHoraDia();

这是答案对应的代码的更新... enter image description here

Image about java 7

所以我这样做了,但是我有一个问题@muasif80,一旦小时等于字符串,索引将被删除,列表也会在 1 中被删除,因此每个值的索引都会发生变化..

ParseQuery<ParseObject> query = ParseQuery.getQuery("CitaTaller");
qEmp=ParseObject.createWithoutData("Empresa",objIdEmpresa);
query.whereEqualTo("Empresa",qEmp);
query.whereEqualTo("fecha", fechaSeleccionada);
query.findInBackground(new FindCallback<ParseObject>() {
public void done(List<ParseObject> objects, ParseException e) {
if (e == null) {
for (ParseObject obj : objects) {

String hora=obj.getString("Hora");

citasTaller.add(obj);
int listSize = citasTaller.size();

for (int i = 0; i < listSize; i++) {
Log.i("JOHI", String.valueOf(citasTaller.get(i)));
}
}
adapter =
new ArrayAdapter<String>(getApplicationContext(), android.R.layout.simple_spinner_dropdown_item, horasList);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

sphorasdia.setAdapter(adapter);

for(ParseObject parseObject : citasTaller){
String hora = parseObject.getString("Hora");
if(hora.equals("05:00am")){
horasList.remove(0);
adapter.notifyDataSetChanged();
}
if(hora.equals("05:30am")){
horasList.remove(1);
adapter.notifyDataSetChanged();


}
if(hora.equals("06:00am")) {
horasList.remove(2);
adapter.notifyDataSetChanged();


}
if (hora.equals("6:30am")){
horasList.remove(3);
adapter.notifyDataSetChanged();


}
if(hora.equals("7:00am")){
horasList.remove(4);
adapter.notifyDataSetChanged();


}
if(hora.equals("7:30am")){
horasList.remove(5);
adapter.notifyDataSetChanged();


}
if(hora.equals("8:00am")){
horasList.remove(6);
adapter.notifyDataSetChanged();


}
if(hora.equals("8:30am")){
horasList.remove(7);
adapter.notifyDataSetChanged();


}
if(hora.equals("9:00am")){
horasList.remove(8);
adapter.notifyDataSetChanged();


}
if(hora.equals("9:30am")){
horasList.remove(9);
adapter.notifyDataSetChanged();


}
if(hora.equals("10:00am")){
horasList.remove(10);
adapter.notifyDataSetChanged();

}
if(hora.equals("10:30am")){
horasList.remove(11);
adapter.notifyDataSetChanged();


}
if(hora.equals("11:00am")){
horasList.remove(12);
adapter.notifyDataSetChanged();


}
if(hora.equals("11:30am")){
horasList.remove(13);
adapter.notifyDataSetChanged();


}
if(hora.equals("12:00pm")){
horasList.remove(14);
adapter.notifyDataSetChanged();


}
if(hora.equals("12:30pm")){
horasList.remove(15);
adapter.notifyDataSetChanged();


}
if(hora.equals("1:00pm")){
horasList.remove(16);
adapter.notifyDataSetChanged();


}
if(hora.equals("1:30pm")){
horasList.remove(17);
adapter.notifyDataSetChanged();


}
if(hora.equals("2:00pm")){
horasList.remove(18);
adapter.notifyDataSetChanged();


}
if(hora.equals("2:30pm")){
horasList.remove(19);
adapter.notifyDataSetChanged();


}
if(hora.equals("3:00pm")){
horasList.remove(20);
adapter.notifyDataSetChanged();


}
if(hora.equals("3:30pm")){
horasList.remove(21);
adapter.notifyDataSetChanged();


}
if(hora.equals("4:00pm")){
horasList.remove(22);
adapter.notifyDataSetChanged();


}
if(hora.equals("4:30pm")){
horasList.remove(23);
adapter.notifyDataSetChanged();


}
if(hora.equals("5:00pm")){
horasList.remove(24);
adapter.notifyDataSetChanged();


}
if(hora.equals("5:30pm")){
horasList.remove(25);
adapter.notifyDataSetChanged();


}
if(hora.equals("6:00pm")){
horasList.remove(26);
adapter.notifyDataSetChanged();


}
}


} else {
Log.d("score", "Error: " + e.getMessage());
}
}
});

最佳答案

Java 8

我认为您可以使用 Java 8 流和 lambda 表达式来执行此操作,如下所示

Set<String> citasHoras = citasTaller.stream().map(citas -> citas.getString("Hora")).collect(Collectors.toSet());

horasList.removeIf(horas -> citasHoras.contains(horas));

上面的第一行将从 citasTaller 列表中为每个项目提取 Hora 到一组字符串中。

然后第二行将从 horasList 中删除“Horas”


您可以按照此 link 在 Android Studio 中更改您的语言级别

如果你不想改变你的语言水平比7级你可以使用下面的代码。

Java 7

for(ParseObject parseObject : citasTaller){
String hora = parseObject.getString("Hora");
if(horasList.contains(hora)){
horasList.remove(hora);
}
}

关于java - 比较列表和从 Spinner android 中删除项目的逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56486447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com