Android: Saving Picture to a File and Retrieving it

前端 未结 2 577
太阳男子
太阳男子 2020-12-18 15:19

After taking a picture with my camera, I want to save it in that layout. I also want to save it to a File and be able to load that picture when I create the activity(so if i

2条回答
  •  独厮守ぢ
    2020-12-18 15:56

    out = ctx.openFileOutput(filename, Context.MODE_PRIVATE);
    

    Try switching to:

    out = ctx.openFileOutput(filename, Context.MODE_WORLD_READABLE);
    

提交回复
热议问题