Android四阵列

问题描述 投票:0回答:2

我有四个轮子,用数字0-9旋转:

我希望能够从四个不同的阵列向每个轮子输入单词,这样每个轮子都有自己特定的单词阵列。

代码发布在下面,如果有人可以查看并编辑代码来纠正它,将会非常有用。

public class PasswActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.passw_layout);
        initWheel(R.id.passw_1);
        initWheel(R.id.passw_2);
        initWheel(R.id.passw_3);
        initWheel(R.id.passw_4);

        Button mix = (Button)findViewById(R.id.btn_mix);
        mix.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                mixWheel(R.id.passw_1);
                mixWheel(R.id.passw_2);
                mixWheel(R.id.passw_3);
                mixWheel(R.id.passw_4);
            }
        });
   }

   // Wheel scrolled flag
   private boolean wheelScrolled = false;

   // Wheel scrolled listener
   OnWheelScrollListener scrolledListener = new OnWheelScrollListener() {
        public void onScrollingStarted(WheelView wheel) {
            wheelScrolled = true;
        } 
        public void onScrollingFinished(WheelView wheel) {
            wheelScrolled = false;
        }
   };

   // Wheel changed listener
   private OnWheelChangedListener changedListener = new OnWheelChangedListener() {
         public void onChanged(WheelView wheel, int oldValue, int newValue) {
             if (!wheelScrolled) {

            }
         }
   };


    /**
      * Initializes wheel
      * @param id the wheel widget Id
     */
    private void initWheel(int id) {
          WheelView wheel = getWheel(id);
          wheel.setViewAdapter(new NumericWheelAdapter(this, 0, 9));
          wheel.setCurrentItem((int)(Math.random() * 10));

          wheel.addChangingListener(changedListener);
          wheel.addScrollingListener(scrolledListener);
          wheel.setCyclic(true);
          wheel.setInterpolator(new AnticipateOvershootInterpolator());
    }

    /**
     * Returns wheel by Id
     * @param id the wheel Id
     * @return the wheel with passed Id
    */
    private WheelView getWheel(int id) {
         return (WheelView) findViewById(id);
    }

    /**
    * Tests entered PIN
      * @param v1
      * @param v2
      * @param v3
      * @param v4
      * @return true 
     */
     private boolean testPin(int v1, int v2, int v3, int v4) {
       return testWheelValue(R.id.passw_1, v1) && testWheelValue(R.id.passw_2, v2) &&
        testWheelValue(R.id.passw_3, v3) && testWheelValue(R.id.passw_4, v4);
     }

    /**
     * Tests wheel value
     * @param id the wheel Id
     * @param value the value to test
     * @return true if wheel value is equal to passed value
    */
    private boolean testWheelValue(int id, int value) {
            return getWheel(id).getCurrentItem() == value;
    }

     /**
     * Mixes wheel
     * @param id the wheel id
     */
     private void mixWheel(int id) {
            WheelView wheel = getWheel(id);
            wheel.scroll(-25 + (int)(Math.random() * 50), 2000);
     }
}
android arrays string android-wheel
2个回答
1
投票

http://code.google.com/p/android-wheel/的Android Picker小部件中,我使用http://android-wheel.googlecode.com/svn/trunk/分叉了一个项目

然后我在Eclipse IDE中从源代码导入了一个新的Android项目 - WheelDemo。之后我改变了:在WheelDemo.java中:

@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
    //Since another activity is being called in this way,
    //I am sending a list with every intent, but this can be changed

    Map map = (Map) l.getItemAtPosition(position);

    ArrayList<String> list = new ArrayList<String>();
    list.add("One");
    list.add("Two");

    Intent intent = (Intent) map.get("intent");
    intent.putStringArrayListExtra("list", list);
    startActivity(intent);
}

在CitiesActivity.java中:

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.cities_layout);
        String[] arrayString = null;

        ArrayList<String> list = new ArrayList<String>();
        list = getIntent().getExtras().getStringArrayList("list");

        if (list != null) {
            arrayString = new String[list.size()];
            if (!list.isEmpty()) {
                for (int i = 0; i < list.size(); i++)
                    arrayString[i] = list.get(i);
            } else
                System.out.println("list is empty");
        } else
            System.out.println("list is null");

        final WheelView country = (WheelView) findViewById(R.id.country);
        country.setVisibleItems(3);
        country.setViewAdapter(new CountryAdapter(this));

        final String cities[][] = new String[][] {
                new String[] { "New York", "Washington", "Chicago", "Atlanta",
                        "Orlando" },
                new String[] { "Ottawa", "Vancouver", "Toronto", "Windsor",
                        "Montreal" },
                new String[] { "Kiev", "Dnipro", "Lviv", "Kharkiv" },
                arrayString, };

.....

然后我得到这样一张照片:

附:我使用过WheelDemo源代码,而不是第一轮


0
投票

在source(kankan.wheel.widget)中你也有ArrayWheelAdapter类,用它来代替NumericWheelAdapter calass

© www.soinside.com 2019 - 2024. All rights reserved.