你好,我是新來的Android工作室我已經建立了一個應用程序時,你從相機應用中的照片看到它在一個ImageView的和共享份額從相機拍攝到的圖像視圖圖像
我已經做了分享按鈕:
case R.id.shrbtn:
startshare();
break;
共享按鈕去這個方法開始共享照片 我已經加入網絡的權限和按鈕沒有做任何事情:
private void startshare() {
Bitmap bmp=viewToBitmap(Image,Image.getWidth(),Image.getHeight());
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/*");
Uri phototUri = Uri.parse(String.valueOf(Bitmap.createBitmap(bmp)));
shareIntent.setData(phototUri);
shareIntent.putExtra(shareIntent.EXTRA_STREAM,phototUri);
startActivity(Intent.createChooser(shareIntent, "Share Via"));
}
誰能告訴我什麼是缺失?
我已經有一個方法,但是對於圖像設置爲牆紙保護無效onActivityResult(INT requestCode,詮釋resultCode爲按鈕,意圖數據){ super.onActivityResult(requestCode,resultCode,data); if(resultCode == RESULT_OK){ Bundle extras = data.getExtras(); bmp =(位圖)extras.get(「data」); Image.setImageBitmap(bmp); } – Hesham