我試圖添加共享意圖發佈到谷歌加似乎並不能化解傳遞新ShareCompat.IntentBuilder
(支持Android庫類)的問題向startActivity
方法。我開始使用this example。我的應用程序是使用Android 2.2平臺編譯的。是否有另一種支持方式來啓動活動來啓動共享意圖。如何用ShareCompat.IntentBuilder startActivity
IntentBuilder shareIntent = ShareCompat.IntentBuilder.from(MyActivity.this);
shareIntent.setText(message);
shareIntent.setSubject(subject);
if (mFullFileName != null) {
File imageFile = new File(mFullFileName);
if (imageFile.exists()) {
shareIntent.setStream(Uri.fromFile(imageFile));
shareIntent.setType("image/jpeg");
}
} else {
shareIntent.setType("*.*");
}
shareIntent.getIntent();
// doesn't compile only accepts Intent and not the Intentbuilder
startActivity(shareIntent);
笏是你所得到的錯誤?如果可能,放入logcat輸出。 – havexz
對不起..我的帖子並沒有我第一次想到的那麼準確..我給startActivity方法添加了一個註釋塊..它的編譯問題似乎無法爲我工作。 – user167698