• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. Mingi

    Can I operate the spinner with the hard key?

    Can I operate the spinner with the hard key? I want to use the hard key to change the spinner's options. E.g, I would like to use the key KEYCODE_3 to move down the Spinner's items one space at a time and then reflect that item when I press the Select key.
  2. Mingi

    If there is such a ListView, is there any way to make the fourth DD visible only when a specific eve

    String[] _InitialSetup_Menu = new String[] { "AA", "BB", "CC", "DD", "FF", "GG", "HH" }; _InitialSetup_List = (ListView) _Main_List.findViewById(R.id._Main_ListView); ArrayAdapter<String> __InitialSetup_Adapter = new...
  3. Mingi

    Spinner's currently selected item is repeatedly selected

    I would like to have the event occur even when the Spinner's currently selected item is repeatedly selected. For example, if 0 is selected and 0 is selected again, I want to make the event fly again. ``` public class MySpinner extends Spinner{ OnItemSelectedListener listener; public...
  4. Mingi

    Android Spinner setOnItemSelectedListener

    Is there a way to execute when the same Position is selected? For example, if 0 is currently selected, selecting 0 again will cause the same event to occur again.
  5. Mingi

    Divider is not displayed in Spinner in Dialog.

    ------------------------------------------------- manifests <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="fec.drawinglibrary_sample"> <uses-feature android:glEsVersion="0x00020000"...
  6. Mingi

    Spinner Scroll

    Hello, My Spinner currently wants to show 8 items at once. But what I want to do is show four items at a time and the rest I want to place it at the bottom using the scroll. What should I do? PS. I am sorry if my writing is strange. I do not speak English well