var height: Int = 0
var width: Int = 0
val bitmap: Bitmap
shareButton = view.findViewById(R.id.fIPreview_shareButton)
shareButton.setOnClickListener {
height = invoiceContent.getChildAt(0).height
width = invoiceContent.measuredWidth
bitmap = getBitmapFromView(invoiceContent, height, width)!!
val shareIntent = Intent()
shareIntent.action = Intent.ACTION_SEND
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
shareIntent.type = "image/jpeg"
shareIntent.putExtra(Intent.EXTRA_STREAM, bitmap)
startActivity(Intent.createChooser(shareIntent,"Choose app"))
}
Получаю следующее ; AILED BINDER TRANSACTION
Хочу из фрагмента вызвать Share
Помогите плиз, сегодня нужно залить в стор =(