android:将spinner绑定到自定义列表

时间:2012-06-07 08:55:37

标签: java android android-spinner

我正在尝试显示一个Spinner列表供用户选择,然后选择绑定到另一个array。用户选择的值surfaceCode将保存以供以后使用。 Spinner数组R.array.surface_option和要绑定的数组R.array.surface_code对齐并保存在xml中。

这是我的代码......

spinnerSurface = (Spinner) findViewById(R.id.spinnerSurface);
ArrayAdapter<CharSequence> adapterSurface = ArrayAdapter.createFromResource(this, R.array.surface_option, android.R.layout.simple_spinner_item);
adapterSurface.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinnerSurface.setAdapter(adapterSurface);

spinnerSurface.setOnItemSelectedListener(new Spinner.OnItemSelectedListener() { 
    public void onItemSelected(AdapterView<?> parent, View v, int position, long id) { 
        TextView tx = (TextView)v; 
        Log.i("\n\nid",String.valueOf(tx.getText()));
        String surfaceCode = getResources().getStringArray(R.array.surface_code)[spinnerSurface.getSelectedItemPosition()];
    }

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

Log.d("code outside", surfaceCode.trim() + " is equal to SW: " + surfaceCode.trim().equals("SW"));

surfaceCode出现错误process stopped unexpectedly,可能是因为它返回null。我的代码出了什么问题?

1 个答案:

答案 0 :(得分:1)

surfaceCode在最后一个代码行中可以为null,因为匿名侦听器中的代码仅在进行选择时执行。

这会在最后一行导致NullPointerException。

即使调用了onItemSelected(),它也不会设置成员surfaceCode,因为你声明了一个同名的局部变量,它正在遮蔽它。

你应该在surfaceCode之前删除“String”并将log语句放在onItemSelected()中。