Contents

조회 수 1267 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

홈화면에 아이콘 추가하기. ㅋㄷ


AndroidManifest.xml 파일에 권한 추가.

<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />


실행화면에 코드 추가.

Intent shortcutIntent = new Intent();
shortcutIntent.setClassName("packageName", "className");
//shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
//shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

Intent addIntent = new Intent();
addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "shortcut_name");
addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
Intent.ShortcutIconResource.fromContext(context, R.drawable.icon));
//intent.putExtra("duplicate", false);
addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
            context.sendBroadcast(addIntent);


## 좀 더 정리된 버전은..

Permissions:

<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />


BroadcastReceiver:

<receiver android:name="YOUR.PACKAGE.PackageReplacedReceiver">
    <intent-filter>
        <action android:name="android.intent.action.PACKAGE_REPLACED" />
        <data android:scheme="package" android:path="YOUR.PACKAGE" />
    </intent-filter>
</receiver>


Functions:

private void addShortcut() {
    //Adding shortcut for MainActivity
    //on Home screen
    Intent shortcutIntent = new Intent(getApplicationContext(), SplashActivity.class);

    shortcutIntent.setAction(Intent.ACTION_MAIN);

    Intent addIntent = new Intent();
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.mipmap.ic_launcher));

    addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
    addIntent.putExtra("duplicate", false);  //may it's already there so don't duplicate
    getApplicationContext().sendBroadcast(addIntent);
}

public void removeShhortcut(){
    Intent shortcutIntent = new Intent(getApplicationContext(), SplashActivity.class);

    shortcutIntent.setAction(Intent.ACTION_MAIN);

    Intent addIntent = new Intent();
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.mipmap.ic_launcher));

    addIntent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
    addIntent.putExtra("duplicate", false);  //may it's already there so don't duplicate
    getApplicationContext().sendBroadcast(addIntent);
}



?

  1. [c] 농구팀 점수 산출 프로그램 소스

    Date2003.04.23 CategoryDevelop Byhooni Views7383
    Read More
  2. [c] 네트워크 트래릭 모니터링.. 졸업작품..

    Date2013.04.23 CategoryDevelop Byhooni Views11051
    Read More
  3. [c] 네트워크 정보 알아보기

    Date2013.04.23 CategoryDevelop Byhooni Views16123
    Read More
  4. [c] 네트워크 보안 프로그래밍 과제 (Server,Agent,Client)

    Date2013.04.23 CategoryDevelop Byhooni Views6473
    Read More
  5. [c] 네트워크 관련 프로그래밍 (포트스캔 탐지 샘플)

    Date2013.04.23 CategoryDevelop Byhooni Views7199
    Read More
  6. [c] 내가 만든 암호화 프로그램.. 좋아^^

    Date2013.04.23 CategoryDevelop Byhooni Views7021
    Read More
  7. [c] 날짜로 요일 찾기..

    Date2003.04.23 CategoryDevelop Byhooni Views8482
    Read More
  8. [c] 기본 자료형(int)이 표현할 수 없는 큰 수(Big number)를 덧셈하는 코드.

    Date2013.04.23 CategoryDevelop Byhooni Views13457
    Read More
  9. [c] 기막힌 정렬 코드 ㅋㄷ

    Date2015.10.13 CategoryDevelop Byhooni Views814
    Read More
  10. [c] 근의 공식으로 2차방정식 풀기..

    Date2003.04.23 CategoryDevelop Byhooni Views7775
    Read More
  11. [c] 그래픽스 자료(OpenGL 라이브러리) 샘플 소스

    Date2003.04.23 CategoryDevelop Byhooni Views10181
    Read More
  12. [c] 그래픽 차트 라이브러리.. 나중에 확인 해볼 거..

    Date2013.04.23 CategoryDevelop Byhooni Views8225
    Read More
Board Pagination Prev 1 ... 46 47 48 49 50 51 52 53 54 55 ... 71 Next
/ 71