Activity を拡張して xml ファイルを解析するクラスがあります。xml ファイル内の必要なテキストは、引数として Java クラスに渡されます。私が抱えている問題は、Java クラスでリソース Layout フォルダーから Android TextViews を参照したいので、テキストを文字列引数に設定できることです。Activity から Java クラスを拡張するか、現在のアクティビティの引数... res/layout のファイルを参照するのは彼らだけですか?
public class xmlClass extends Activity{
//parse the xml
MyDataFile mdf = new MyDataFile(arg1, arg2, arg3, arg4);
}
public class MyDataFile{
public MyDataFile(arg1, arg2, arg3, arg4)
{
}
******* Here I want to set the Text in a TextView to arg1;
}