We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to declare BetterSpinner in xml file? thanks
The text was updated successfully, but these errors were encountered:
in readme:
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line, COUNTRIES); BetterSpinner textView = (BetterSpinner) findViewById(R.id.countries_list); textView.setAdapter(adapter); } private static final String[] COUNTRIES = new String[] { "Belgium", "France", "Italy", "Germany", "Spain" };
what's type R.id.countries_list in xml file?
R.id.countries_list
Sorry, something went wrong.
Something like this:
<com.weiwangcn.betterspinner.library.material.MaterialBetterSpinner android:id="@+id/rate_type" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Hint"/>
No branches or pull requests
how to declare BetterSpinner in xml file? thanks
The text was updated successfully, but these errors were encountered: