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.
正如标题所说,我想在搜索小部件上添加一些来自 url 的图像作为自定义建议的图标。我在 android.com 上的这个参考资料中看到我必须使用 Uri,但我不知道如何使用。
你可以使用这个:
Uri.parse("android.resource://" + YOUR_APP_PACKAGE + "/" + resourceId);
例如:
Uri.parse("android.resource://com.mycompany.myapp/" + R.drawable.suggest_icon);