1
我試圖從sdcard中刪除一個圖像文件。以下代碼可以正常使用模擬器,但是當我在Nexus手機上測試它時,每個已刪除圖像的文件夾中都存在一個黑框。所以,在以下有關類似問題的帖子,我的代碼如下所示。 我剛剛開始學習android編程,並陷入了困境。我真的很感謝你的幫助。android如何在刪除後刪除sd卡文件夾中刪除圖像的黑框?
`
String sdcard_path=Environment.getExternalStorageDirectory().getAbsolutePath()+"/Expense_image";
File cacheFile =new File (sdcard_path,imageLocation);
if(cacheFile.exists()){
boolean deleted=cacheFile.delete();
Log.i("Deletion check","deleted:"+deleted);
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStorageDirectory())));
}
Manifest.xml文件:
<uses-feature android:name="android.hardware.camera" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<activity
android:name=".deleteRecord"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.refat.myexpensev1.DELETERECORD" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MEDIA_MOUNTED" />
<data android:scheme="file" />
</intent-filter>
</activity>
我已經在清單文件中添加了該權限,它刪除了模擬器中的文件,沒有任何黑框,但沒有在真實的設備中。請告訴我可能的解決方案。 – user3737716
你的API是什麼? – Boggartfly