So far i've been writing my Android app just by typing names in to methods. I am now sorting this out, going through and putting these into string.xml instead and referencing the string using:
txt.setText(this.getString(R.string.string_name));
However, when trying to use this in a static context (in public static void), it does not work and gives an error.
Does anyone have any pointers of how to overcome this? I am fairly new to Java/Android programming and this is the first time I have come across this problem. Any help is much appreciated.
Extra code:
public static void ShowCatAddedAlert(Context con)
{
AlertDialog.Builder builder=new AlertDialog.Builder(con);
builder.setTitle("Add new Category");
builder.setIcon(android.R.drawable.ic_dialog_info);
DialogListner listner=new DialogListner();
builder.setMessage("Category Added successfully");
builder.setPositiveButton("ok", listner);
AlertDialog diag=builder.create();
diag.show();
}
getString()or reference theTextViewthat's probably an instance variable from a static context. We'll need more context to help solve the real problem. – Devunwired Feb 24 '11 at 0:25