1、请在Workspace.java的startDrag方法中判断将要拖动的图标是否是特定的图标(通过package name/activity name判定),如果是的话,就禁止拖动。
2、那么如何获取当前点击图标的package name呢?
请在Workspace.java的startDrag方法中,在View child = cellInfo.cell;代码后面添加:
ItemInfo info = (ItemInfo)cell.getTag();
接下来判断info是否是ShortcutInfo实例,如果是的话,就可以将info强制转换成ShortcutInfo,然后拿到intent,最后通过intent获取package name/activity name。
ItemInfo info = (ItemInfo)cell.getTag();
接下来判断info是否是ShortcutInfo实例,如果是的话,就可以将info强制转换成ShortcutInfo,然后拿到intent,最后通过intent获取package name/activity name。