DI为Android服务

时间:2010-02-09 22:04:26

标签: android

我正在尝试在构建它之后在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坚持将它自己实例化为类。有没有人知道如何在不诉诸全局状态的情况下注入依赖关系?

0 个答案:

没有答案