I am trying to access some of the onCreate class variables from another class that is under activity class, for example
..Acivity class(..)
Class onCreate(..){
Final int intItemNo = 0;
}
Class testing(){
//some commands here, will need access to the intItemNo above.
}
};
Final int intItemNo = 0;this is local variable in `onCreate() method, not class variable.onCreate()andtesting()are classes?