【Android随记】-- 全局获取context

  
  
  
  
  1. public class MyApplication extends Application { 
  2.     private static MyApplication instance; 
  3.  
  4.     public static MyApplication getInstance() { 
  5.         return instance; 
  6.     } 
  7.  
  8.     @Override 
  9.     public void onCreate() { 
  10.         // TODO Auto-generated method stub 
  11.         super.onCreate(); 
  12.         instance = this
  13.     } 

 Manifest中添加相关Application配置

本文出自 “Panda | Android” 博客,谢绝转载!

你可能感兴趣的:(context,全局)