KO
|
EN
gitlite — search
Search
#javascript
#c-plus-plus
#python
#php
#ruby
#java
#ansible
#yii2
#ios
#qt
#education
#cms
HintSpinnerAdapter
★ 43
Open GitHub ↗
Hint Spinner Adapter
Download README (.md)
Explore Similar Repositories
sam-redux
:
An experiment at using Redux for SAM
sQuery
:
A growing small library of chain methods "in a jQuery way" for Sketch to make the selection and filter task a little easiest :)
AWebDB-Sample
:
Help you to query sqlite database from web browser.
opparis
:
codebase for op paris
AutoTestProject
:
自己写的android自动化测试工具SDK,测试框架基于robotium,重写了robotium里一点bug代码,做了测试报告功能扩充,懒得导成jar。此工具可以自动生成测试报告,自动截图,自动获取控制台log,自动记录每一步操作。解决测试报告不友好、不能自动截图和报告分析的问题。-----还有好多不足之处,如果有幸被关注,请多多指教!
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
HintSpinnerAdapter
?
Download (.md)
# HintSpinnerAdapter Current spinner don't allow user to add "Hint" to it. But specially for EditText and other input fields it is necessary to have "Hint" text so that lable can be avoided. This HintSpinnerAdapter allows user to add hint to spinner with very less effor and very effectively. Only thing user need to do is, he has to pass his own spinner adapter to this sample adapter and thats it. <strong>Syntax</strong> hintSpinner.setAdapter(new HintSpinnerAdapter(<User_Created_Adapter_Object>, <hint_layout_item>, context)); <strong>Example</strong> ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, R.array.color, android.R.layout.simple_spinner_item); hintSpinner.setAdapter(new HintSpinnerAdapter(adapter, R.layout.hint_row_item, this));  MIT License ------ The MIT License (MIT) Copyright (c) 2015 Chintan Rathod Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.