android-spinnerwheel icon indicating copy to clipboard operation
android-spinnerwheel copied to clipboard

can not get center visible item click in WhellviewVerticle.

Open iamnitesh opened this issue 8 years ago • 0 comments

can not get center visible item click. When trying to implement below code

wheel.addClickingListener(new OnWheelClickedListener() {
                    @Override
                    public void onItemClicked(AbstractWheel wheel, int itemIndex) {
                    Toast.makeText(getActivity(), "item" + itemIndex , Toast.LENGTH_SHORT).show();
                    }
                });

it toast the first item instead center one. so how can we get center item when click perform in wheelview.

iamnitesh avatar Dec 23 '16 14:12 iamnitesh