我正在尝试创建一个内容提供商,其中外卡字符' *'用于匹配其他网址,例如。
content://com.gaurav.provider/podcast/*
和*用于匹配:
content://com.gaurav.provider/podcast/http://www.example.com/example.mp3
但它没有匹配。任何解决方案?
答案 0 :(得分:0)
content://com.gaurav.provider/podcast/http://www.example.com/example.mp3
不是有效的Uri
。你不能在路径上有一个冒号。
content://com.gaurav.provider/podcast/www.example.com/example.mp3
应该可以正常工作,content://com.gaurav.provider/podcast/http/www.example.com/example.mp3
。