使用标题名搜索Android应用程序

使用标题名搜索Android应用程序,android,google-play,android-searchmanager,Android,Google Play,Android Searchmanager,但当我在搜索框中使用标题名“FmFm Beta”进行搜索时,它并没有显示我的应用程序 I have developed an Android Application, and launched in marked with title "FmFm Beta". String query=“maps”; AppsRequest AppsRequest=AppsRequest.newBuilder() .setQuery(查询) .setStartIndex(0).setEntriesCount(

但当我在搜索框中使用标题名“FmFm Beta”进行搜索时,它并没有显示我的应用程序

I have developed an Android Application, and launched in marked with title "FmFm Beta".
String query=“maps”;
AppsRequest AppsRequest=AppsRequest.newBuilder()
.setQuery(查询)
.setStartIndex(0).setEntriesCount(10)
.setWithExtendedInfo(真)
.build();
session.append(appsRequest,新回调

But when i search using package name in url 
"https://market.android.com/details?id=packagename",
it is showing my Apps.


So how to search my Apps using Title name?
String query = "maps";
AppsRequest appsRequest = AppsRequest.newBuilder()
                                .setQuery(query)
                                .setStartIndex(0).setEntriesCount(10)
                                .setWithExtendedInfo(true)
                                .build();

session.append(appsRequest, new Callback<AppsResponse>() {
         @Override
         public void onResult(ResponseContext context, AppsResponse response) {
                  // Your code here
                  // response.getApp(0).getCreator() ...
                  // see AppsResponse class definition for more infos
         }
});