How do I create a custom android dialog for Android?
There is an example on this blog that probably covers your question:
http://www.mokasocial.com/2011/03/easily-create-a-default-custom-styled-spinner-android/
Edit:
These blog posts have a pretty similar answer: http://karanbalkar.com/2013/07/tutorial-39-create-custom-spinner-in-android/ http://stephenpengilley.blogspot.no/2013/01/ android-custom-spinner-tutorial.html
The key to setting up Android Spinner is to create a custom resource for spinner strings, and then transfer that layout string to the user adapter. The following two functions can be overridden in a user adapter:
@Override public View getDropDownView(int position, View cnvtView, ViewGroup prnt) { // Custom view generation } @Override public View getView(int pos, View cnvtView, ViewGroup prnt) { // Custom view generation }
To determine how Android Spinner will look at the user.
Source: https://habr.com/ru/post/1338861/More articles:Performance effects with object instances in EntityFramework - performanceHow to fill in the list from the observed collection correctly? - c #Charts - using dialogs and layouts - primefacesSVN: it is impossible to set svn to ignore in one file - svnVisual Studio 2010 debugger leaps - visual-studio-2010"Expected Association Receiving String" with Many-to-Many Association - ruby | fooobar.comhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1338863/returning-complex-types-multiple-lists-to-client-side-using-jqueryajax&usg=ALkJrhjJ0pCj_mb-OS3ztZ-rGC2PcWqDyADo any of the main document-oriented database systems compress keys in their JSON documents? - nosqlIn the event of an access violation, w3wp.exe will work and restart until the application pool is stopped - asp.netwhat is the difference between using the insert function when using std :: map.insert ("xyz") or just map [ind] = "xyz" - c ++All Articles