Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
How to select multiple list item in Android?
Which code do I use? If this code is right then what is next?
Use Multiple select adapter in list view you can find many library
like ManuelPeinado/MultiChoiceAdapter
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
Iam trying to put the code here but the site keep giving me error
So here is it
https://github.com/C9nc/Empty-EditText/blob/main/EditTextCheck
You have initialised the buttons and edittexts even before you have called the content view !
Initialisation should be done after setContentView();
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
i need a unique id to identify the text field(start - press)(end - press) mention in the below image
there is no id, name or class to identify them
this is the xml code seen in inspect element.
Try using
//input[contains(#placeholder,'Start')]
or
//div[#class="leaflet-routing-geocode"]/input
i think
By.cssSelector("input[placeholder=\"Start - press enter to drop
marker\"]")
...ought to work
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Currently, I can get back a list of users from an Active Directory group but I would like to return more than just their CN/name. How would I do this?
For example, I have an AD group with 20 members. I can get their names but I would also like to return their job title in the output as well.
In fact, you can get their DNs from the group. To get any other attribute, you need to do an additional query (getAttributes) for each member.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Do you a widget or a way to have a rating bar in java like android ? I'm using gtk3. I can create a radiobutton group which is quite similar but not the same visualy.
You can change the image of radiobutton with drawables.
Possible solution
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I need to make a listview like the pic shows, but in Java.
E.G. from Delphi Listview
I've tried to use JList but it didn't work quite right, I couldn't make columns, just rows. Could someone help me?
Try using JTable and do your own research for how to use JTable.