forked from getodk/collect
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reimplemented selectMulti widgets using RecyclerView
- Loading branch information
1 parent
008c9c5
commit 80ecc15
Showing
9 changed files
with
317 additions
and
300 deletions.
There are no files selected for viewing
123 changes: 123 additions & 0 deletions
123
collect_app/src/main/java/org/odk/collect/android/adapters/AbstractSelectListAdapter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/* | ||
* Copyright 2018 Nafundi | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.odk.collect.android.adapters; | ||
|
||
import android.support.annotation.NonNull; | ||
import android.support.v7.widget.RecyclerView; | ||
import android.util.TypedValue; | ||
import android.view.Gravity; | ||
import android.view.View; | ||
import android.widget.CompoundButton; | ||
import android.widget.Filter; | ||
import android.widget.Filterable; | ||
import android.widget.TextView; | ||
|
||
import org.javarosa.core.model.SelectChoice; | ||
import org.javarosa.form.api.FormEntryPrompt; | ||
import org.odk.collect.android.application.Collect; | ||
import org.odk.collect.android.utilities.FormEntryPromptUtils; | ||
import org.odk.collect.android.views.MediaLayout; | ||
import org.odk.collect.android.views.ODKView; | ||
import org.odk.collect.android.widgets.SelectWidget; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Locale; | ||
|
||
import static org.odk.collect.android.widgets.QuestionWidget.isRTL; | ||
|
||
public abstract class AbstractSelectListAdapter extends RecyclerView.Adapter<AbstractSelectListAdapter.ViewHolder> | ||
implements Filterable { | ||
|
||
SelectWidget widget; | ||
List<SelectChoice> items; | ||
List<SelectChoice> filteredItems; | ||
|
||
AbstractSelectListAdapter(List<SelectChoice> items, SelectWidget widget) { | ||
this.items = items; | ||
this.widget = widget; | ||
filteredItems = items; | ||
} | ||
|
||
@Override | ||
public void onBindViewHolder(@NonNull ViewHolder holder, int index) { | ||
holder.bind(index); | ||
} | ||
|
||
@Override | ||
public int getItemCount() { | ||
return filteredItems.size(); | ||
} | ||
|
||
@Override | ||
public Filter getFilter() { | ||
return new Filter() { | ||
@Override | ||
protected FilterResults performFiltering(CharSequence charSequence) { | ||
String searchStr = charSequence.toString().toLowerCase(Locale.US); | ||
if (searchStr.isEmpty()) { | ||
filteredItems = items; | ||
} else { | ||
List<SelectChoice> filteredList = new ArrayList<>(); | ||
FormEntryPrompt formEntryPrompt = widget.getFormEntryPrompt(); | ||
for (SelectChoice item : items) { | ||
if (formEntryPrompt.getSelectChoiceText(item).toLowerCase(Locale.US).contains(searchStr)) { | ||
filteredList.add(item); | ||
} | ||
} | ||
|
||
filteredItems = filteredList; | ||
} | ||
|
||
FilterResults filterResults = new FilterResults(); | ||
filterResults.values = filteredItems; | ||
return filterResults; | ||
} | ||
|
||
@Override | ||
protected void publishResults(CharSequence charSequence, FilterResults filterResults) { | ||
filteredItems = (List<SelectChoice>) filterResults.values; | ||
notifyDataSetChanged(); | ||
} | ||
}; | ||
} | ||
|
||
CompoundButton setUpButton(final int index) { | ||
return null; | ||
} | ||
|
||
void adjustButton(TextView button, int index) { | ||
button.setTextSize(TypedValue.COMPLEX_UNIT_DIP, Collect.getQuestionFontsize()); | ||
button.setText(FormEntryPromptUtils.getItemText(widget.getFormEntryPrompt(), filteredItems.get(index))); | ||
button.setTag(items.indexOf(filteredItems.get(index))); | ||
button.setEnabled(!widget.getFormEntryPrompt().isReadOnly()); | ||
button.setGravity(isRTL() ? Gravity.END : Gravity.START); | ||
button.setOnLongClickListener((ODKView) widget.getParent().getParent().getParent()); | ||
} | ||
|
||
abstract class ViewHolder extends RecyclerView.ViewHolder { | ||
MediaLayout mediaLayout; | ||
|
||
ViewHolder(View itemView) { | ||
super(itemView); | ||
} | ||
|
||
void bind(final int index) { | ||
widget.addMediaFromChoice(mediaLayout, index, setUpButton(index)); | ||
} | ||
} | ||
} |
104 changes: 104 additions & 0 deletions
104
collect_app/src/main/java/org/odk/collect/android/adapters/SelectMultipleListAdapter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* Copyright 2018 Nafundi | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.odk.collect.android.adapters; | ||
|
||
import android.support.annotation.NonNull; | ||
import android.support.v7.widget.AppCompatCheckBox; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import android.widget.CheckBox; | ||
|
||
import org.javarosa.core.model.SelectChoice; | ||
import org.javarosa.core.model.data.helper.Selection; | ||
import org.odk.collect.android.views.MediaLayout; | ||
import org.odk.collect.android.widgets.SelectWidget; | ||
|
||
import java.util.List; | ||
|
||
public class SelectMultipleListAdapter extends AbstractSelectListAdapter { | ||
|
||
private final List<Selection> selectedItems; | ||
|
||
public SelectMultipleListAdapter(List<SelectChoice> items, List<Selection> selectedItems, SelectWidget widget) { | ||
super(items, widget); | ||
this.selectedItems = selectedItems; | ||
} | ||
|
||
@Override | ||
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { | ||
return new ViewHolder(new MediaLayout(parent.getContext())); | ||
} | ||
|
||
class ViewHolder extends AbstractSelectListAdapter.ViewHolder { | ||
ViewHolder(View v) { | ||
super(v); | ||
mediaLayout = (MediaLayout) v; | ||
widget.initMediaLayoutSetUp(mediaLayout); | ||
} | ||
} | ||
|
||
@Override | ||
CheckBox setUpButton(final int index) { | ||
AppCompatCheckBox checkBox = new AppCompatCheckBox(widget.getContext()); | ||
adjustButton(checkBox, index); | ||
checkBox.setOnCheckedChangeListener((buttonView, isChecked) -> { | ||
Selection selection = filteredItems.get(index).selection(); | ||
if (isChecked) { | ||
addItem(selection); | ||
} else { | ||
removeItem(selection); | ||
} | ||
}); | ||
|
||
for (Selection selectedItem : selectedItems) { | ||
// match based on value, not key | ||
if (items.get(index).getValue().equals(selectedItem.getValue())) { | ||
checkBox.setChecked(true); | ||
break; | ||
} | ||
} | ||
|
||
return checkBox; | ||
} | ||
|
||
public void addItem(Selection item) { | ||
for (Selection selectedItem : selectedItems) { | ||
if (selectedItem.getValue().equals(item.getValue())) { | ||
return; | ||
} | ||
} | ||
selectedItems.add(item); | ||
} | ||
|
||
public void removeItem(Selection item) { | ||
for (Selection selectedItem : selectedItems) { | ||
if (selectedItem.getValue().equals(item.getValue())) { | ||
selectedItems.remove(selectedItem); | ||
break; | ||
} | ||
} | ||
} | ||
|
||
public void clearAnswer() { | ||
selectedItems.clear(); | ||
notifyDataSetChanged(); | ||
} | ||
|
||
public List<Selection> getSelectedItems() { | ||
return selectedItems; | ||
} | ||
} |
Oops, something went wrong.