我正在尝试在构建它之后在android中启动一个服务:
String ip = ((EditText)findViewById(R.id.ip)).getText().toString();
int port = Integer.valueOf( ((EditText)findViewById(R.id.port)).
getText().toString() );
try {
IConnectionManager connectionManager =
new SocketConnectionManager(ip, port);
Alerter alerter = new Alerter(connectionManager);
**//tell android to start alerter**
} catch (IOException e) {
// show a dialog
e.printStackTrace();
}
似乎android坚持将它自己实例化为类。有没有人知道如何在不诉诸全局状态的情况下注入依赖关系?