我想在从相机或画廊获得的图像上添加图像名称(文本)吗?我尝试了诸如Canvas或使用XML文件之类的解决方案,但我想要更可行的解决方案
答案 0 :(得分:1)
答案 1 :(得分:0)
Simply take relative layout in XML and add Textview and ImageView .
现在从下面的代码获取图像名称 您可以使用substring方法从路径字符串获取文件的名称。
String path=":/storage/sdcard0/DCIM/Camera/1414240995236.jpg";
// it contains your image path...I'm using a temp string...
String filename=path.substring(path.lastIndexOf("/")+1);