您好我正在开发一个处理产品的应用程序,我想使用 Android 助手改善用户体验。
我阅读了 Google 的文档并首先尝试使用以下代码:
@Override
public void onProvideAssistContent(AssistContent assistContent) {
super.onProvideAssistContent(assistContent);
String structuredJson = new JSONObject()
.put("@type", "MusicRecording")
.put("@id", "https://example.com/music/recording")
.put("name", "Album Title")
.toString();
assistContent.setStructuredData(structuredJson);
}
该代码被调用,但没有增加谷歌助手抓取当前视图的正常体验。我还尝试使用产品架构(schema.org)(使用@product、@brand、@review ...),因为我认为问题是 json 对象在 google 搜索中没有给出任何结果。但是这个新的 json 什么也没出现。
当我认为问题在于 json 在 Google 搜索中没有定论或者我忘了做更多事情时,我错了吗?
谢谢