我有一个使用sd-card内容的程序。我想听听sd-card mount或sd-card意外删除等不同的状态。我该怎么办一个例子将是一个很大的帮助。
感谢所有
答案 0 :(得分:11)
您需要倾听ACTION_MEDIA_REMOVED和ACTION_MEDIA_MOUNTED。创建接收器并监听此操作。
编辑:
在您的清单文件中添加此
<receiver android:name=".MyReceiver" >
<intent-filter>
<action android:name="android.intent.action.MEDIA_REMOVED" />
<action android:name="android.intent.action.MEDIA_MOUNTED" />
<data android:scheme="file" />
</intent-filter>
</receiver>
然后创建一个MyReceiver类,它将扩展BroadcastReceiver,然后捕获这些操作并执行你想要做的事情。
答案 1 :(得分:2)
在Manifest中创建一个接收器:
<receiver android:name=".ExternalSDcardRemoved">
<intent-filter>
<action android:name="android.intent.action.MEDIA_EJECT" />
<data android:scheme="file" />
</intent-filter>
</receiver>
以及相应的类文件:
public class ExternalSDcardRemoved extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
// SD card removed
}
}
答案 2 :(得分:1)
您可以使用以下内容:
static boolean checkSdCardStatus(final Activity activity) {
String status = Environment.getExternalStorageState();
//the SD Card is mounted as read-only, but we require it to be writable.
if (status.equals(Environment.MEDIA_MOUNTED_READ_ONLY)) {
UIMethods.showFinalAlert(activity, R.string.sdcard_readonly);
return false;
}
//your handset is mounted as a USB device
if (status.equals(Environment.MEDIA_SHARED)) {
UIMethods.showFinalAlert(activity, R.string.sdcard_shared);
return false;
}
//no SD Card inserted
if (!status.equals(Environment.MEDIA_MOUNTED)) {
UIMethods.showFinalAlert(activity, R.string.no_sdcard);
return false;
}
return true;
}
并在Activity.onStart()
或Activity.onResume()
中调用此方法。
答案 3 :(得分:0)
感谢@PravinCG
这是完整的代码。
SDCardBroadcastReceiver.java
代码
public class SDCardBroadcastReceiver extends BroadcastReceiver {
private static final String ACTION_MEDIA_REMOVED = "android.intent.action.MEDIA_REMOVED";
private static final String ACTION_MEDIA_MOUNTED = "android.intent.action.MEDIA_MOUNTED";
private static final String MEDIA_BAD_REMOVAL = "android.intent.action.MEDIA_BAD_REMOVAL";
private static final String MEDIA_EJECT = "android.intent.action.MEDIA_EJECT";
private static final String TAG = "SDCardBroadcastReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Log.i(TAG, "Intent recieved: " + intent.getAction());
if (intent.getAction() == ACTION_MEDIA_REMOVED) {
Log.e(TAG, "ACTION_MEDIA_REMOVED called");
// For bundle Extras do like below
// Bundle bundle = intent.getExtras();
// if (bundle != null) {
//
// }
}else if (intent.getAction() == ACTION_MEDIA_MOUNTED){
Log.e(TAG, "ACTION_MEDIA_MOUNTED called");
}else if(intent.getAction() == MEDIA_BAD_REMOVAL){
Log.e(TAG, "MEDIA_BAD_REMOVAL called");
}else if (intent.getAction() == MEDIA_EJECT){
Log.e(TAG, "MEDIA_EJECT called");
}
}
}
这是我的manifest.xml
文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="genetechsolutions.sdcardmountlistner">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".SDCardBroadcastReceiver" >
<intent-filter>
<data android:scheme="file" />
<action android:name="android.intent.action.MEDIA_REMOVED" />
<action android:name="android.intent.action.MEDIA_MOUNTED" />
<action android:name="android.intent.action.MEDIA_EJECT" />
<action android:name="android.intent.action.MEDIA_BAD_REMOVAL" />
</intent-filter>
</receiver>
</application>
</manifest>