StringPicker
StringPicker is a library to provides a custom view and dialog fragment to pick string value.
on 2.x device.
Download
Download from maven central.
dependencies {
compile 'com.github.hotchemi:stringpicker:0.0.2'
}
ChangeLog
- 2014/02/28 v0.0.1 release.
- 2014/03/01 v0.0.2 release.
Sample
Please try to move the sample module.
How to use
StringPicker
Custom view.
<hotchemi.stringpicker.StringPicker
android:id="@+id/string_picker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
StringPicker stringPicker = (StringPicker) view.findViewById(R.id.string_picker);
// set string array String[] values = new String[] {
"a","b","c","d","e","f"
}
; stringPicker.setValues(values);
// or set list List<String> list = values.toArray(new String[values.size()]);
stringPicker.setValues(list);
// get value stringPicker.getCurrentValue()
StringPickerDialog
implements in your activity.
StringPickerDialog dialog = new StringPickerDialog();
Bundle bundle = new Bundle();
String[] values = new String[] {
"a","b","c","d","e","f"
}
; bundle.putStringArray(getString(R.string.string_picker_dialog_values), values);
dialog.setArguments(bundle);
dialog.show(getSupportFragmentManager(), TAG);
callback.
@Override public void onClick(String value) {
mTextView.setText(value);
}
Custom dialog
If you want to use your own dialog labels, override string xml resources on your application.
<resources>
<string name="string_picker_dialog_values">STRING_PICKER_DIALOG_VALUES</string>
<string name="string_picker_dialog_title">StringPickerDialog</string>
<string name="string_picker_dialog_ok">OK</string>
<string name="string_picker_dialog_cancel">Cancel</string> </resources>
Requirements
Supports Android 2.2 or greater.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
License
Copyright 2014 Shintaro Katafuchi Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.