android Launcher权限

 

代码如下:

      package="net.sunniwell.launcher"

      android:versionCode="1"android:versionName="1.0.1">

关于自定义权限,这是很好的例子,其他apk程序要想使用Launcher的功能必须添加这些权限,而这些权限都是在这里声明的。


这个是安装快捷方式的权限定义:


        android:name="com.android.launcher.permission.INSTALL_SHORTCUT"

        android:permissionGroup="android.permission-group.SYSTEM_TOOLS"

        android:protectionLevel="normal"

        android:label="@string/permlab_install_shortcut"

        android:description="@string/permdesc_install_shortcut"/>

 

这个是卸载快捷方式的权限定义:


        android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"

        android:permissionGroup="android.permission-group.SYSTEM_TOOLS"

        android:protectionLevel="normal"

        android:label="@string/permlab_uninstall_shortcut"

        android:description="@string/permdesc_uninstall_shortcut"/>


这个是读取launcher.db内容的权限定义:


        android:name="net.sunniwell.launcher.permission.READ_SETTINGS"

        android:permissionGroup="android.permission-group.SYSTEM_TOOLS"

        android:protectionLevel="normal"

        android:label="@string/permlab_read_settings"

        android:description="@string/permdesc_read_settings"/>


这个是修改和删除launcher.db内容的权限定义:


        android:name="net.sunniwell.launcher.permission.WRITE_SETTINGS"

        android:permissionGroup="android.permission-group.SYSTEM_TOOLS"

        android:protectionLevel="normal"

        android:label="@string/permlab_write_settings"

        android:description="@string/permdesc_write_settings"/>

这些是Launcher的权限声明,通过这些就能看出launcher的大概功能了:

打电话权限:


使用状态栏权限:


获取当前或最近运行的任务的信息的权限:


读取通信录权限:


设置壁纸权限:

允许程序设置壁纸hits的权限:

使用震动功能权限:

修改删除launcher.db内容权限:

绑定widget权限:

读取launcher.db内容权限:

修改删除launcher.db内容权限:

读写外部存储设备权限:

 

 


        android:name="LauncherApplication"

      activity应该运行的进程的名字:

android:process="android.process.acore"

        android:label="@string/application_name"

        android:icon="@drawable/swicon">


            android:name="Launcher"

           是否

android:launchMode="singleTask"

            android:clearTaskOnLaunch="true"

            这个activity是否在被杀死或者重启后能恢复原来的状态:

android:stateNotNeeded="true"

            android:theme="@style/Theme"

            android:screenOrientation="landscape"

            android:windowSoftInputMode="stateUnspecified|adjustPan">




 

桌面应用的标记:



自动化测试工具Monkey的标记,待研究…

 


选择壁纸的activity:


            android:name="WallpaperChooser"

            android:label="@string/pick_wallpaper"

            android:icon="@drawable/ic_launcher_gallery">


设置壁纸的intent-filter:





搜索的activity:



            android:name="android.app.default_searchable"

            android:value="*"/>

安装快捷方式的广播接收器:


 

            android:name=".InstallShortcutReceiver"

            android:permission="com.android.launcher.permission.INSTALL_SHORTCUT">






卸载快捷方式的广播接收器:


            android:name=".UninstallShortcutReceiver"

            android:permission="com.android.launcher.permission.UNINSTALL_SHORTCUT">





声明ContentProvider,用于对launcher.db操作:



            android:name="SWLauncherProvider"

            android:authorities="net.sunniwell.launcher.settings"

            android:writePermission="net.sunniwell.launcher.permission.WRITE_SETTINGS"

            android:readPermission="net.sunniwell.launcher.permission.READ_SETTINGS"/>




说明:
1.
android:sharedUserId="android.uid.shared",作用是获得系统权限,但是这样的程序属性只能在build整个系统时放进去(就是系统软件)才起作用,手动安装是没有权限的。

你可能感兴趣的:(Android)