How to attach image from drawable to gmail?

后端 未结 4 1113
醉酒成梦
醉酒成梦 2020-11-28 16:49

I am trying to attach image from my gridview to gmail or facebook,but whenever i tried to attach my app got crash,and i am getting following error with nullpointer exceptio

4条回答
  •  -上瘾入骨i
    2020-11-28 17:30

    roman thing is you are passing a null bitmap object

     Bitmap icon = mBitmap;
    

    you need to assign bitmap first then the code will start work

    for more info you can have a look on to below links :-

    https://github.com/codepath/android_guides/wiki/Sharing-Content-with-Intents

    http://developer.android.com/training/sharing/send.html

提交回复
热议问题