use of com.devzone.checkabletextview.CheckedListener in project AlphaTour by Frank99DG.
the class Step2 method getZones.
public void getZones() {
loadingbar.setVisibility(View.VISIBLE);
if (!receiver.isConnected()) {
}
db.collection("Zones").whereEqualTo("idUser", user.getUid()).get().addOnSuccessListener(new OnSuccessListener<QuerySnapshot>() {
@Override
public void onSuccess(QuerySnapshot queryDocumentSnapshots) {
if (!queryDocumentSnapshots.isEmpty()) {
// lista zone
List<DocumentSnapshot> listDocument = queryDocumentSnapshots.getDocuments();
if (!DashboardActivity.isFirstZoneChosen()) {
for (DocumentSnapshot d : listDocument) {
Zone zone = d.toObject(Zone.class);
if (idPlace.matches(zone.getIdPlace())) {
View zoneView = getLayoutInflater().inflate(R.layout.row_selection_zones_elements, null, false);
CheckableTextView textZone1 = (CheckableTextView) zoneView.findViewById(R.id.textObjectss);
textZone1.setText(zone.getName());
array_database.add(zone.getName());
arrayZone.add(textZone1);
list_zone.addView(zoneView);
deleteView.add(zoneView);
}
}
for (i = 0; i < arrayZone.size(); i++) {
arrayZone.get(i).setOnCheckChangeListener(new CheckedListener() {
@Override
public void onCheckChange(@NonNull View view, boolean b) {
// contatore per capire quando ne seleziona 2
int c = 0;
for (int a = 0; a < arrayZone.size(); a++) {
// ciclo per contare quanti sono checkati
if (arrayZone.get(a).isChecked()) {
c++;
}
}
for (int j = 0; j < arrayZone.size(); j++) {
// se è checkato più di uno, il precedente che è checkato viene impostato a false
if (c > 1) {
if (n == j) {
arrayZone.get(j).setChecked(false, false);
}
}
}
for (int k = 0; k < arrayZone.size(); k++) {
// serve per tenere la posizione dell'ultimo checkato
if (arrayZone.get(k).isChecked()) {
n = k;
continue;
}
}
}
});
}
} else {
db.collection("Constraints").get().addOnSuccessListener(new OnSuccessListener<QuerySnapshot>() {
@Override
public void onSuccess(QuerySnapshot queryDocumentSnapshots) {
List<DocumentSnapshot> listConstraint = queryDocumentSnapshots.getDocuments();
for (DocumentSnapshot d : listConstraint) {
Constraint constraint = d.toObject(Constraint.class);
String zona;
if (PercorsoWizard.isZonePassFromReview()) {
zona = PercorsoWizard.getZone();
DashboardActivity.setZona_vecchia(zona);
DashboardActivity.setZona_scelta(zona);
} else {
zona = DashboardActivity.getZona_scelta();
DashboardActivity.setZona_vecchia(zona);
}
if (constraint.getFromZone().matches(zona)) {
View zone = getLayoutInflater().inflate(R.layout.row_selection_zones_elements, null, false);
CheckableTextView textZone1 = (CheckableTextView) zone.findViewById(R.id.textObjectss);
textZone1.setText(constraint.getInZone());
array_database.add(constraint.getInZone());
arrayZone.add(textZone1);
list_zone.addView(zone);
deleteView.add(zone);
}
}
PercorsoWizard.setZonePassFromReview(false);
for (i = 0; i < arrayZone.size(); i++) {
arrayZone.get(i).setOnCheckChangeListener(new CheckedListener() {
@Override
public void onCheckChange(@NonNull View view, boolean b) {
// contatore per capire quando ne seleziona 2
int c = 0;
for (int a = 0; a < arrayZone.size(); a++) {
// ciclo per contare quanti sono checkati
if (arrayZone.get(a).isChecked()) {
c++;
}
}
for (int j = 0; j < arrayZone.size(); j++) {
// se è checkato più di uno, il precedente che è checkato viene impostato a false
if (c > 1) {
if (n == j) {
arrayZone.get(j).setChecked(false, false);
}
}
}
for (int k = 0; k < arrayZone.size(); k++) {
// serve per tenere la posizione dell'ultimo checkato
if (arrayZone.get(k).isChecked()) {
n = k;
continue;
}
}
}
});
}
}
});
}
loadingbar.setVisibility(View.GONE);
}
}
});
}
Aggregations