毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> 移动平台 >> 正文

android 判断快捷方式问题

更新时间:2013-6-28:  来源:毕业论文

android 判断快捷方式问题

在android应用启动时中我写了个判断快捷方式的方法,但是它总是返回false,并不会返回true,请问下我哪里写错了吗?
谢谢各位了!
代码如下:

Java code?private boolean isFavorites() {     boolean isInstallShortcut = false;     final ContentResolver cr = getContentResolver();     final String AUTHORITY = "com.android.launcher.settings";     final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY             + "/favorites?notify=true");      Cursor c = cr.query(CONTENT_URI,new String[] { "title", "iconResource" }, "title=?",new String[] { getString(R.string.app_name) }, null);     if (c != null && c.getCount() > 0)         isInstallShortcut = true;     return isInstallShortcut; }

getString(R.string.app_name)
这个名称你改改,手动写,不行就试试packagename

可能是中文名称导致的没找到

private void addShortcut() {         Intent shortcut = new Intent(                 "com.android.launcher.action.INSTALL_SHORTCUT");           // 快捷方式的名称         shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME,                 getString(R.string.app_name));         shortcut.putExtra("duplicate", false); // 不允许重复创建           // 指定当前的Activity为快捷方式启动的对象: 如 com.everest.video.VideoPlayer         // 注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序         ComponentName comp = new ComponentName(this.getPackageName(), "."                + this.getLocalClassName());         shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(                 Intent.ACTION_MAIN).setComponent(comp));           // 快捷方式的图标         Intent.ShortcutIconResource iconRes = Intent.ShortcutIconResource                 .fromContext(this, R.drawable.icon);         shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes);         sendBroadcast(shortcut);     }

这个是安全的考虑,如果用户不同意就不创建,系统默认的设置,不是那么容易改的!

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。