(Android) 바탕화면 바로가기 만들기
private void addShortcut(Context context) { Intent shortcutIntent = new Intent(); shortcutIntent.setAction(Intent.ACTION_MAIN); shortcutIntent.addCategory(Intent.CATEGORY_LAUNCHER); shortcutIntent.setClassName(context, getClass().getName()); shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_CLEAR_TOP); Parcelable iconResource = Intent.ShortcutIconResource.fromContext( th..
개발/개발 자료
2013. 12. 11. 09:45