私はこの記事を見つけました:A new way to search for content in your appsと私は本当にこの機会に興奮しています。私はこのように、Googleの検索結果に自分のアプリケーションのコンテンツを表示したい:説明とプレビューを含むアプリケーションコンテンツをGoogle検索結果に追加するにはどうすればよいですか?
しかし、この記事はあなたのアプリケーションでこの機能を実装する方法についての情報はありません。
記事で説明したように、私は、自分のアプリケーションにのAppインデックスAPIを使用します。
これは私のコードです:
...
private GoogleApiClient mClient;
@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.ac_main);
mClient = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
}
public Action getAction() {
Thing object = new Thing.Builder()
.setName("Test Content")
.setDescription("Test Description")
.setUrl(Uri.parse("myapp://com.example/"))
.build();
return new Action.Builder(Action.TYPE_VIEW).setObject(object)
.setActionStatus(Action.STATUS_TYPE_COMPLETED)
.build();
}
@Override
public void onStart() {
super.onStart();
mClient.connect();
AppIndex.AppIndexApi.start(mClient, getAction());
}
@Override
public void onStop() {
AppIndex.AppIndexApi.end(mClient, getAction());
mClient.disconnect();
super.onStop();
}
...
そして、ティ
Googleはなく、説明とプレビュー画像のない自分のアプリケーションのテスト内容を示します。■結果です。 Google検索結果に説明やプレビュー画像を追加する方法はありますか?(YouTubeやTwitterなど)
私はすでにこれを試しましたが、残念なことに、それは助けになりませんでした。 –
今すぐお試しください。私は自分の答えを編集しました。 –