Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

One solution is to define an interface, with a function DoSomethingToSpinner and then implement it in your main activity

public void DoSomethingToSpinner (some_parameter)
{
     spinner.setselection(some_parameter);
     // do your work here

}

and then call interface.DoSomethingToSpinner and it should solve your problem.

share|improve this answer
I create the spinner in the onCreate class. so where can i can add the method? – Davide Sousa Jan 2 '12 at 21:18
it doesn't let me add a method in the onCreate class. what can i add as the parameter? – Davide Sousa Jan 2 '12 at 21:21
Edited, check answer, it won't allow to change parameters of onClick either – SpeedBirdNine Jan 2 '12 at 21:24
how do i define an interface? and what do i use as a parameter, where you state "some parameter"? – Davide Sousa Jan 2 '12 at 21:26
This some parameter depends on your implementation, what you want to do with the spinner, such as the value for spinner.setselection(<some parameter>); – SpeedBirdNine Jan 2 '12 at 21:27
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.