I am using Android Validation Saripaar Library for validation, I need to assign my XML Resource strings to message attribute, I'm unable to get System Resources by getResources.getStrings(R.strings.myString) at this scope because "this" is not accessible outside local scope.
public class signup extends Activity
{
@Order(1)
@Email(message = "Please Type Correct Email!")
private EditText email;
//onCreate()....
}
Try as follows