제가 지금 shortcut을 사용하여서 바탕화면에 아이콘을 자동생성시켰습니다.
	그럼 그 생성된아이콘을 클릭시 url을 혹시 다음이나 네이버로 연결시킬수있을까요?
	 
	 private static final String EXTRA_KEY = "패키지명";
	 @Override
	 public void onCreate(Bundle savedInstanceState) {
	  super.onCreate(savedInstanceState);
	  setContentView(R.layout.main);
	  Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
	  shortcutIntent.setClassName(this, this.getClass().getName());
	  shortcutIntent.putExtra(EXTRA_KEY, "ApiDemos Provided This Shortcut");
	  Intent intent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
	  intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
	  intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
	  intent.putExtra("duplicate", false);
	  
	  Parcelable iconResource = Intent.ShortcutIconResource.fromContext(this, R.drawable.ad_icon);
	  intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);
	  sendBroadcast(intent);