Questions tagged [multichoiceitems]

A multichoice list is a control where the user can select more than one item (which, typically show up as check boxes)

A multichoice list is a control where the user can select more than one item (which, typically show up as check boxes)

70 questions
2
votes
2 answers

ListView: hide Contextual Action Bar

I'm following the official guide for using contextual action mode like this: listView.setChoiceMode(AbsListView.CHOICE_MODE_MULTIPLE_MODAL); listView.setMultiChoiceModeListener(new AbsListView.MultiChoiceModeListener() { @Override …
netimen
  • 4,199
  • 6
  • 41
  • 65
2
votes
2 answers

List items do not appear in AlertDialog

I'm trying to make an AlertDialog appear, that let's the user pick several items from a list. That should be pretty straightforward, and i followed this guide: http://developer.android.com/guide/topics/ui/dialogs.html But my items do not appear! I…
Kitalda
  • 351
  • 2
  • 18
1
vote
1 answer

Django Admin list_per_page for a multichoicefield m2m

I have a m2m relationship setup and it works on the admin side. however it lists all 60,000 records (as it should), to make this work more efficiently when loading how do I limit the number of returned records. I have looked into the list_per_page…
Spatial Digger
  • 1,883
  • 1
  • 19
  • 37
1
vote
2 answers

How to make an Alertdialog with Multichoice items along with an EditText?

I have a AlertDialog of Multichoice Items.I want to have an EditText beside each item. How do i achieve this? third_card.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { …
1
vote
0 answers

display previous selected items in a arraylist with new one in multichoice dialogbox

when i reopen the dialog to show items which are selected they are shown fine but if i select another item then the other items which were selected previously got removed and only new one are shown in arraylist. i want to show new selected item as…
1
vote
2 answers

Checkboxes become unchecked in Dialog when scrolling

I am using AlertDialog.Builder.setMultiChoiceItems to show checkboxes with texts. I can display the checked items successfully, but whenever I scroll it down or up, some of them become randomly unchecked. Below is my code. What can I do to fix…
1
vote
2 answers

change standard checkbox color in setmultichoiceitems

I have a alertdialog which contains multichoice items and all other functionality is working fine. I've a problem with the color of the checkbox it is showing is not matching with my app color. I've tried with the setcustombuilder but it is not…
user2269164
  • 1,095
  • 2
  • 15
  • 31
1
vote
1 answer

Android setMultiChoiceItems

When I click a button a dialog pops up with multiple selection checkbox. When I select and click on ok it pops up another dialog with selected item.If i close the dialog by clicking outside the dialog and again press the button to show the dialog to…
Dilip
  • 66
  • 10
1
vote
0 answers

Android MultiChoiceAdapter issue

I am using github library project MultiChoiceAdapter to selected gridview images delete. Library is here But actually i want to also display item as selected like in normal case stay selected item (highlighted). In this library they uses selector…
Das
  • 141
  • 13
1
vote
2 answers

Android AlertDialog Multi Choice Items

I have an activity for user with a button called choose days when user clicks the button it show a alert dialog for selecting the day of week now i want when user select multiple days then previously selected check box will show in check position…
Sinku Paliwal
  • 213
  • 1
  • 3
  • 8
1
vote
1 answer

MultiChoiceAdapter for ActionbarCompat NoSuchMethodException: startActionMode

I'm using MultiChoiceAdapter for ActionBarCompat and I'm having NoSuchMethodException: startActionMode. My gradle installation is compile 'com.github.manuelpeinado.multichoiceadapter:multichoiceadapter-abc:3.0.0' that's all. Logcat 2755-2755/…
1
vote
1 answer

Django: fetching data from form fields that takes multiple values

Currently,I am building a django powered web app for displaying filtered data form a master table.I have created a form where user will specify his/her choice and depending upon the form values data( in tabular form) will be displayed. My problem is…
Prav001
  • 343
  • 1
  • 5
  • 12
1
vote
1 answer

Android AlertDialog MultiChoiceItems not showing custom view

Friends, I am unable to set custom view for AlertDialog MultiChoiceItems. AlertDialog.Builder builder = new AlertDialog.Builder(getContext()); builder.setMultiChoiceItems(items.toArray(new CharSequence[items.size()]), selected, this); ListAdapter…
sitilge
  • 3,687
  • 4
  • 30
  • 56
0
votes
1 answer

Sort PowerApp Gallery using a multi select choice column from SharePoint list

I have a Powerapp to monitor tasks with a flexible height gallery that is sourced from a SharePoint list. I have selected a flexible height gallery as one of my columns I need to filter my gallery on is a multi select choice column. After…
Burner
  • 47
  • 5
0
votes
1 answer

Multi select menu in makefile

I have a makefile that deploys x project in aws The goal is to execute the make like this: make deploy-production And see output like this Please select the project: 1) api 2) web 3) somethingelse You press then the number and make continues, by…
Kristi Jorgji
  • 1,154
  • 1
  • 14
  • 39