EDIT: so this is what im rockin now: the dialog and the array display just fine, i just want to be able to set the static variable from the originating class within the onClick that is in a method that is in a different class. easy right? all of the try, catch and
<?> were things that i put in at the insistence of the complier.
public class Setter
{
public void myList(Context context, Class<?> thisclass, int arrayid, String choice)
{
return new AlertDialog.Builder(context)
.setItems(arrayid, new OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
setChoice(thisclass, context, arrayid, which, choice);
}
})
.create();
}
public void setChoice(Class<?> thisclass, Context context, int arrayid, int which, String choice)
{
String[] array = context.getResources().getStringArray(arrayid);
try
{
Field f = thisclass.getDeclaredField(choice);
f.set(null, array[which]);
}
catch (SecurityException e)
{
e.printStackTrace();
}
catch (NoSuchFieldException e)
{
e.printStackTrace();
}
catch (IllegalArgumentException e)
{
e.printStackTrace();
}
catch (IllegalAccessException e)
{
e.printStackTrace();
}
}
}
public class ClassA extends Activity
{
static String stringa;
Setter setted = new Setter();
...
public void onCreate()
{
super.onCreate();
...
AlertDialog thinga = setted.myList(this, getclass(), R.array.thinga, stringa).show();
...
}
}
when i select an item from the list, i get this from debugger:
ClassCache.findFieldByName(Field[], String) line: 438
Class.getDeclaredField(String) line: 666
Setter.setChoice(Class, Context, int, int, String) line: 45 // the line with the Field
i think im passing it the class wrong but this is a bit out of my current depth.
i have a number of different classes each with their own static Strings. i am passing the method below the name of the String (in choice) and the context of what i had hoped was the original class that called a method that called a method that led to the code below. i was hoping i could call context.choice = something and the machine would read that as ClassA.stringa = something; how do i do that?
briefly, i want to have a list of items that the user can choose from be the content of a dialog, and have their selection be saved and accessible to the class that called for the creation of the dialog. perhaps im going about this all wrong but i got tired of dealing with other 'kludges' involving using spinners to do the same thing.
because onClick can't have non-final objects declared elsewhere (at least that is my understanding) i thought maybe i could get around that by calling to another method, setChoice that would store the value of whatever was chosen. i would definitively say this is a kludge and would love to be shown the light as to how you are supposed to deal with these things.
stringa=polka;would have been sufficient instead ofsetted.setChoice(this, stringa, polka);. Somehow he's trying to abstract away an assignment statement. – Vineet Reynolds Jun 17 '11 at 4:41