StringPicker is a library to provides a custom view and dialog fragment to pick string value.
on 2.x device.
Download from maven central.
dependencies {
compile 'com.github.hotchemi:stringpicker:0.0.2'
}
Please try to move the sample module.
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()
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);
}
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>
Supports Android 2.2 or greater.
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)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.