nice-spinner
nice-spinner copied to clipboard
A nice spinner for Android
I have added the dependency and repository but still I am unable to access nice spinner. Error `Cannot resolve class org.angmarch.views.NiceSpinner`
I use vivoX6PlusL which version android 5.1,sometimes arrow not show,but same code i run motozplay which version android 8.0,it is show. And AndroidStudio Preview also show the arrow,its normal here...
Hi, I set the background using a transparent png file, when pop up window showing,there is a redundant text appearing in the anchor view area,which has mixed to the anchor...
modify the NiceSpinner.java: @Override public boolean onTouchEvent(MotionEvent event) { if (isEnabled() && event.getAction() == MotionEvent.ACTION_UP && adapter != null) { if (!popupWindow.isShowing() && adapter.getCount() > 0) { showDropDown(); } else...
有个地方双屏异显用到了下拉列表这个功能,发现nice-spinner无论如何也弹不出下拉列表框。 这个原因可能是nice-spinner中使用的是PopupWindow,而Presentation本身是个dialog, 在dialog中无法使用PopupWindow,是这个原因吧?有没有解决办法呢,在Presentation中使用nice-spinner?
when I just create a new project , I follow the "How to include" to edit my build.gradle ``` repositories { maven { url "https://jitpack.io" } } ``` and `implementation...
I think if it has the function above,it will be more than great!
经查看源码NiceSpinner发现: 1、在设置adapter的方法setAdapterInternal中,在1.4.5之前设置条件为adapter.getCount() > 0,现作者已改为adapter.getCount() > =0。 2、在方法onTouchEvent中,弹出条件仍为adapter.getCount() > 0,而NiceSpinnerAdapter的getCount会数据长度上减1,最终造成条件不成立,从而不弹窗