roboguice wikiのSimple Exampleは、アクティビティにインスタンスInject
を挿入するために使用できることを示しています。LocationManager
ただし、この例が作成されてから API が変更されたようです。Inject
どのパッケージにも見つかりません。LocationManager
最新の roboguice 2.0 API を使用して自分のアクティビティにを挿入する方法はありますか?
参照用のコード例を次に示します。
class RoboWay extends RoboActivity {
@InjectView(R.id.name) TextView name;
@InjectView(R.id.thumbnail) ImageView thumbnail;
@InjectResource(R.drawable.icon) Drawable icon;
@InjectResource(R.string.app_name) String myName;
@Inject LocationManager loc;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
name.setText( "Hello, " + myName );
}
}