これは私の名簿クラスです。
public class RosterList extends Activity {
/** Called when the activity is first created. */
Variables var = new Variables();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.roster);
Roster roster = var.connection.getRoster();
Collection<RosterEntry> entries = roster.getEntries();
TextView tv;
for (RosterEntry r : entries) {
tv = (TextView)findViewById(R.id.rosterString);
tv.append(r.getUser().toString()+ "\n");
}
}
}
ホールド変数用に別のクラスを作成しました。これはVariables
です。そこで、XMPPConnection
変数などを作成しました。ただし、このコードにはいくつかのランタイムエラーがあります。
roster
-objectの作成時にエラーが発生します。XMPPConnection
このクラスのにアクセスするにはどうすればよいですか?Variablesクラスのインスタンスを作成して接続変数にアクセスできないのはなぜですか?