亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

android獲取本地視頻列表

小云
177
2023-09-23 08:44:24
欄目: 編程語言

要獲取本地視頻列表,可以使用MediaStore類來查詢MediaStore.Video.Media表。以下是一個示例代碼:

import android.content.ContentResolver;
import android.content.Context;
import android.database.Cursor;
import android.provider.MediaStore;
public class LocalVideoFetcher {
public static List<String> getVideoList(Context context) {
List<String> videoList = new ArrayList<>();
ContentResolver contentResolver = context.getContentResolver();
// 查詢視頻
String[] projection = {MediaStore.Video.Media.DATA};
Cursor cursor = contentResolver.query(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, projection, null, null, null);
if (cursor != null) {
while (cursor.moveToNext()) {
String videoPath = cursor.getString(cursor.getColumnIndexOrThrow(MediaStore.Video.Media.DATA));
videoList.add(videoPath);
}
cursor.close();
}
return videoList;
}
}

在調用上述方法時,需要傳入一個Context對象。例如,在Activity中獲取本地視頻列表,可以這樣調用:

List<String> videos = LocalVideoFetcher.getVideoList(this);

請注意,獲取本地視頻列表可能需要在AndroidManifest.xml文件中添加以下權限:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

0
增城市| 奉节县| 西乡县| 平江县| 抚宁县| 德清县| 甘肃省| 正镶白旗| 四会市| 保康县| 繁昌县| 旌德县| 资溪县| 阿鲁科尔沁旗| 五峰| 乌兰县| 呈贡县| 交口县| 碌曲县| 象州县| 高淳县| 西畴县| 法库县| 交城县| 增城市| 木里| 宝丰县| 哈巴河县| 南雄市| 临武县| 通许县| 会东县| 宁河县| 安国市| 页游| 金寨县| 双鸭山市| 芜湖市| 扬中市| 桐柏县| 浦江县|