I have a spinner created in the onCreate function. Here is the code:
Spinner spinner = (Spinner) findViewById(R.id.spinner1);
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(
this, R.array.weight_array, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(adapter);
spinner.setOnItemSelectedListener(new MyOnItemSelectedListener());
Now I want to access the spinner from another class. What I want to do is set the spinner selection to position 0 when I am done with a method. I reckon I have to use something like:
spinner.setselection(0);
but doing this outside the class where the spinner was created doesn't work. Here is the section of code where I'm trying to access the spinner:
public void onClick(DialogInterface dialog, int item)
{
switch(item)
{
case 0:
{
float valueInput = Float.parseFloat(valueEntered.getText().toString());
valueEntered.setText(String.valueOf(convertKilosToGrams(valueInput)));
///This is where i want to to access the spinner///
break;
}
Can anyone help?
