Android 如何在意向选择器';谁的名单?

Android 如何在意向选择器';谁的名单?,android,android-intent,sms,mms,Android,Android Intent,Sms,Mms,我有以下代码: cookieBitmap.compress( Bitmap.CompressFormat.JPEG, 100, new FileOutputStream(new File("/mnt/sdcard/cookie.jpg"))); Intent picMessageIntent = new Intent(

我有以下代码:

cookieBitmap.compress(
                        Bitmap.CompressFormat.JPEG, 
                        100, 
                        new FileOutputStream(new File("/mnt/sdcard/cookie.jpg")));
                Intent picMessageIntent = new Intent(android.content.Intent.ACTION_SEND);
                picMessageIntent.setType("image/jpeg");
                File fortuneFile = new File("/mnt/sdcard/cookie.jpg");
                picMessageIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fortuneFile));
                Log.i("INFO","At BEFORE INTENT");
                if (prepareTask.isCancelled()) {return false;}
                startActivity(Intent.createChooser(picMessageIntent, getString(R.string.sendcookieusing)));
在我的galaxy vibrant上,选择器包括android的短信应用程序。当我选择此选项时,它将启动操作系统的新文本活动,并将图像作为附加图片放置在文本中。然而,我已经在myTouch 3G和myTouch 3G幻灯片上运行了我的应用程序,而短信选项没有显示出来。我怎样才能让手机上的图片成为一种选择

有没有人遇到过这个问题?有多少种手机会出现这个问题?我的应用程序目前在市场上,但没有人下载。我该有多担心?如果它只影响myTouch手机,我想我可以把它推迟几天修复

谢谢

编辑:我认为这种情况发生在带有HTC sense rom的手机上