I have this counter and want to know how I can place a border around this
Spinner dropdown = (Spinner)findViewById(R.id.spinnerUpdateContactMethod); String[] items = new String[]{"1", "2", "three"}; ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, items); dropdown.setPrompt("Please select "); dropdown.setAdapter(adapter);
the tooltip does not actually appear on the screen. Please help me with this.
android spinner
dark_illusion_909099
source share