Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何构建表 MediaStore.Files.FileColumns 的 URI?我尝试这样:
Uri uri=Uri.parse(MediaStore.Files.FileColumns);
但在 Eclipse 中,“MediaStore.Files.FileColumns”带有下划线。我想,我做错了。如何正确构造一个URI?
FileColumns 是接口。您不能引用接口。如果您需要显式列,请使用
Uri uri=Uri.parse(MediaStore.Files.FileColumns.<COLUMN>);
例如:
Uri uri=Uri.parse(MediaStore.Files.FileColumns.MEDIA_TYPE);
MediaStore.Files.FileColumns 是一个接口,方法 Uri.parse() 接收一个字符串。