Android4.2_Launcher_AndroidMainfest.xml

AndroidMainifest.xml 列出了Launcher 向系统提供的基本信息,包括包名,用到的组件(Activity,Service,Receiver,ContentProvider)。声明了它需要用到的权限,以及自己定义的权限。


在这个 AndroidMainifest.xml 文件,它主要做了这样几件事:

1. 定义了自己的权限,告诉外其他程序,如果需要用 Launcher的话,需要声明这些权限。

2. 申请了自己需要用到的权限。包括打电话,设置壁纸,读取与写设置(这两个使用了自己定义的权限),

3. 声明了这个程序使用的 Application 实例。

4. 声明了这个程序的主 Activity 及其它 Activity,主 Activity 即 Launcher Activity,同时用IntentFilter来接收广播启动。如果我们要写自己的 Launcher,就需要使用一样的 IntentFilter。WallpaperChooser 是Launcher的第二个 Activity,从名字可以判断应该是 选择壁纸时调用的。这个 Activity 当接收到"android.intent.action.SET_WALLPAPER" 广播时会启动。


5. 声明了4个Receiver,注释中已经告诉这三个 Receiver的用途了。分别是:

   Intent received used to prepopulate the default workspace,根据名字应该是预加载 workspace的广播。

   Intent received used to install shortcuts from other applications 应用程序建立快捷方式的广播

   Intent received used to uninstall shortcuts from other applications 应用程序删除快捷方式的广播。

   New user initialization; set up initial wallpape 应该是检测到是新用户时,来设置壁纸。

6. 声明了一个 Provider, 主要用来向外界提供服务,需要Launcher自己定义的权限 读设置和写设置。

7. 为Application节点声明了一个<meta-data>。这个值在应用程序中会被这样读取:

  ApplicationInfo appInfo = this.getPackageManager()
                                  .getApplicationInfo(getPackageName(),
                          PackageManager.GET_META_DATA);
    String msg=appInfo.metaData.getString("android.nfc.disable_beam_default");

上面就是 Launcher 的清单文件主要做的事情了。从这里可以看出初始化主要在 Application 的 onCreate 和 Launcher Activity 的 onCreate中完成。






    

    
    
    
    
    

    
    
    
    
    
    
    
    

    
        
            
                
                
                
                
            
        

        
            
                
                
            
            
        

        
        
            
                
            
        

        
        
            
                
            
        

        
        
            
                
            
        

        
        
            
                
            
        
        
        
        

        
    




    





你可能感兴趣的:(Android)