Spinner1从数组填充,然后根据第一个微调器选择为spinner2选择第二个数组

时间:2016-03-29 12:35:19

标签: android arrays string spinner

好的微调器1使用Manu_array      旋转器2​​使用Manu 1xsd,Manu 2xrsd或3x4rsd      我现在需要的是能够在微调器1中从Manu_array中选择一个值后填充第二个微调器。

<!--for spinner 1-->
<string-array name="Manu_array">
<item>Manu 1xsd</item>
<item>Manu 2xrsd</item>
<item>Manu 3x4rsd</item>
</string-array>

<!--for spinner 2-->
<string-array name="Manu 1xsd">
<item>a1</item>
<item>a2</item>
<item>a3</item>
<item>a4</item>
</string-array>

<string-array name="Manu 2xrsd">
<item>bg 1</item>
<item>bg 2</item>
</string-array>

<string-array name="Manu 3x4rsd">
<item>z1</item>
<item>z2</item>
<item>zd4</item>
<item>xs5</item>
<item>fg34</item>
</string-array>

我的java文件代码:

 final Spinner[] spinner1 = {(Spinner) findViewById(R.id.spinner1)};

  // Create an ArrayAdapter using the string array and a default spinner     layout
  ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
  R.array.Manu_array, R.layout.textview);

  spinner1[0].setAdapter(adapter);
  // Specify the layout to use when the list of choices appears
  adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
 // Apply the adapter to the spinner
    spinner1[0].setAdapter(adapter);

 spinner1[0].setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

 public void onItemSelected(AdapterView<?> arg0, View arg1,
                                   int arg2, long arg3) {

            int index = arg0.getSelectedItemPosition();
            // storing string resources into Array
            Manu= getResources().getStringArray(R.array.Manu_array);

            Toast.makeText(getBaseContext(), "You have selected : " + Manu[index],
                    Toast.LENGTH_SHORT).show();

       }

        public void onNothingSelected(AdapterView<?> arg0) {
            // do nothing
        }
    });

我可以处理允许微调器填充数组数据的代码,但是我不能根据第一个微调器的选择来填充第二个微调器,当然,如果等于值,则使用数组。

上面的微调器显示了Manu_array的值,下一个微调器必须取选择的值并使用适当的数组值填充,但我设法做的就是生成第二个微调器,其中包含我手动键入的数组值in,not selected。

if(Manu.equals("Manu 1xsd")){spinner2  languages = getResources().getStringArray(R.array.Manu 1xsd_array)}else......

我可以查看示例的任何建议请在这里查看一些并让我感到困惑。

1 个答案:

答案 0 :(得分:0)

单击第一个微调器中的项目时设置第二个微调器适配器

spinner1.setOnItemSelectedListener(new OnItemSelectedListener() {
    @Override
    public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) {
        int arrayId = 0;
        switch(position) {//get array id according to selected position
            case 0:
               arrayId = R.array.Manu_1xsd;
               break;
            case 1:
               arrayId = R.array.Manu_2xrsd;
               break;
            case 2:
               arrayId = R.array.Manu_3x4rsd;
               break;
        };
        ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this, arrayId, R.layout.textview);

        spinner2.setAdapter(adapter);
    }

    @Override
    public void onNothingSelected(AdapterView<?> parentView) {
        // your code here
    }

});