Questions tagged [android-wheel]

Sometimes called kankan wheel, the Android wheel selector is an open source wheel selector. Use with the [android] tag

Official Android wheel project website

27 questions
0
votes
2 answers

Android Four Arrays

I have four wheels which spin with the numbers 0-9: I want to be able to input words into each of the wheels from four different arrays so each wheel would have its own specific array of words. The code is posted below and would be very helpful if…
Matt
  • 1,747
  • 8
  • 33
  • 58
0
votes
2 answers

Switch between two listeners

In my program I would like to use two sets of wheels like the following: hours = (WheelView) findViewById(R.id.hour); NumericWheelAdapter hourAdapter = new NumericWheelAdapter(this, 0, 23,…
patrick
  • 1,282
  • 4
  • 21
  • 37
0
votes
1 answer

WheelPicker OnwheelChangeListener returns null onpause

I am using a Wheel picker called MBWheelPicker open source class that extends View and has a couple interfaces OnScrollChangeListener and OnItemSelectedListener. When the user pauses the app and returns while entering input to the wheelpicker, the…
The_Martian
  • 3,684
  • 5
  • 33
  • 61
0
votes
1 answer

Android Wheel day and time picker get values

Hi All I am using Wheel lib in app, I want to show date and time in Toast when I click button. How can I do it?? This is code of the example where I just show date and time in wheel but I want to get and show date and time in Toast. public class…
user3555472
  • 836
  • 3
  • 11
  • 38
0
votes
1 answer

How to add Onclick to Wheel Menu?

I have Made a Rotating Wheel Menu By Reading this Tutorial. http://developer.digitalaria.com/devguide/gama/en/gama/wheel_android.php It is Working.But I Don't Know how to add Onclick method to this Wheel Menu. **Activity ** public class…
AruLNadhaN
  • 2,808
  • 5
  • 24
  • 42
0
votes
1 answer

Can I add a caption to Wheel picker

I want to add a caption to wheel picker. I can't find any methods for a caption. I have already have a wheel picker which is only written in java. I want to add caption only in java.Please help me. Edit: Here is my code. final WheelView minute =…
Halo
  • 729
  • 1
  • 8
  • 18
0
votes
1 answer

How can add Caption in wheel picker?

I want to add a caption into a wheel picker. Like this: But in my code, it shows in all of the items in the wheel. Here is my code: final WheelView minute = new WheelView(Mcontex); minute.setMinimumHeight(300); layoutHome.addView(minute, new…
Chann Lynn
  • 201
  • 1
  • 3
  • 14
0
votes
1 answer

kankan.wheel.widget.WheelView. Custom views in the wheel item arent being shown

I am using the wheel widget from the kankan project. I followed the demo. I implemented a custom view for the wheel items and after loading most of the wheel items are not being shown. Here is my code: My Adapter: public class MyAdapter implements…
Ozzz
  • 342
  • 5
  • 12
0
votes
2 answers

Canvas Touch not working in S4 Android device

The wheel View (CircleView) is working fine in major of devices but this error coming from S4 and Note 3 devices. The touch is getting deducted but the that not fall under the weidgetregion. false - 1 has to be true - 1 Region Log is: My Circle…
0
votes
1 answer

Android wheel on Samsung Galaxy S2 ICS

In our app we use Android wheel lib. Problem is on Galaxy SII. The wheel works only when user touch it, move his finger on the side (out of the wheel) and then scroll up or down. Have anyone this problem too and possible solution?
cecan
  • 25
  • 8
0
votes
1 answer

wheel demo not working

I have the kankan.wheel demo (cities, passwords, date/time etc.) and its working fine. I wrote a small program to see if I can use it by myself: This is how the class begins: public class WheelTestActivity extends Activity { @Override public void…
Guy Cohen
  • 689
  • 1
  • 9
  • 25
0
votes
1 answer

identify what I have chosen from a wheel android

I am using the code for the wheel chooser from here. So lets say that i want to implement something like the citiesactivities.java. Code is below. What I want now is: when the user chooses with the slider what he want, press a button Go and take him…
ghostrider
  • 5,131
  • 14
  • 72
  • 120
1
2