Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android RoboGuice使用指南(15) Inject Context

Android RoboGuice使用指南(15) Inject Context

編輯:Android開發教程

在Android應用程序中,很多地方需要引用到Context對象(Activity, Application,Service等)。Roboguice 使得引用Context對象變得非常容易。

可以參見下面例子,這裡定義一個不在Activity中的類ContextInfo,需 要引用Context對象:

class ContextInfo{     
          
 final Context context;
 @Inject 
 ContextInfo(Context context){     
 this.context=context;     
 }     
          
 String getPackageName(){     
 return context.getApplicationInfo().packageName;     
 }     
}

需要應用Context對象時,使用@Inject 標記,Roboguice會自動注入 所需Context對象。

定義一個InjectContextDemo,使用一個TextView來顯 示ContextInfo的getPackageName內容。

public class 

InjectContextDemo extends RoboActivity {     
          
 @InjectView (R.id.textview) TextView textView;     
 @Inject ContextInfo contextInfo;     
          
 @Override 
 public void onCreate(Bundle savedInstanceState) {     
 super.onCreate(savedInstanceState);     
          
 setContentView(R.layout.injectcontext);     
 textView.setText(contextInfo.getPackageName());     
          
 }     
          
}

在InjectContextDemo中定義一個InjectContextDemo,也使用@Inject 通知Roboguice自動創建它的一個實例。Roboguice在創建這個對象時,調用其 Injectable 構造函數(參見Android RoboGuice 使用指南(10): Just-in-time Bindings ),自動傳入Context對象。

如果需要應用Application對象,可以將構造函數改為

@Inject 
 ContextInfo(RoboguiceDemoApplication context){     
 this.context=context;     
}

或引用Activity

@Inject 
 ContextInfo(Activity context){     
  this.context=context;     
}

本例下載: http://www.imobilebbs.com/download/android/roboguice/InjectContextDemo. zip

查看全套文章:http://www.bianceng.cn/OS/extra/201301/34950.htm

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved