2013-11-26 92 views
8

我有一個很奇怪的問題,我使用我的HTC One V運行4.0.3操作系統開發了我的應用程序。現在,該應用程序在我的和其他一些隨機的2.2和2.3和4+設備上運行得非常好,但在某些設備上,儘管它們上有GooglePlayStore,但應用程序會啓動並加載,但不會顯示其他地圖,儘管它們上面有GPStore應用程序崩潰說GPStore /服務不存在。AVD無法使用AVD測試任何應用程序

我試圖在AVD Devies上測試應用程序,但沒有安裝GooglePlayStore。我嘗試Google Play on Android 4.0 emulator的方法來推動GPStore對他們,但沒有成功。

我的機器人SDK是完全更新:
enter image description here

我編譯我的 enter image description here

應用在我的主要活動我檢查,如果谷歌Play業務/商店存在,以確定是否可以使用谷歌地圖:

public class Map extends FragmentActivity implements Observer 
{ 
    private MapAgent agent; 
    private Locator locator; 
    private Spinner spinner; 
    private Button gps; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) 
    { 
    super.onCreate(savedInstanceState); 

    // Get a new instance of Locator agent 
    locator = new Locator(); 

    // Register as Observer to Locator agent 
    locator.addObserver(this); 

    // Check if Internet connection is available 
    if(Services.connectivityServiceState(this)) 
    { 
     // We have a working Internet connection 
     // Check if we have a GooglePS in operating mode 
     if(Services.playServiceState(this)) 
     { 
     // Load the map 
     setContentView(R.layout.activity_map); 

     // Fetch dropdown list & gps button reference 
     spinner = (Spinner) findViewById(R.id.bankslist); 
     gps  = (Button) findViewById(R.id.gpsbttn); 

     // Register event listener with gps button 
     gps.setOnClickListener(new GpsAction(this)); 

     // Register event listener with spinner 
     spinner.setOnItemSelectedListener(new SpinnerAction()); 

     // Fetch our map 
     agent = new MapAgent(this); 

     // Move map camera to initial position 
     agent.initialPosition(); 



     } else { 
     // GooglePS is not in operating mode 
     Messages.playNotificationMessage(this); 
     } 

    } else { 
     // No Internet connection 
     // Prompt user to turn on WiFi or Mobile 
     Messages.internetConnectionRequestMessage(this); 
    } 
    } 

檢查GooglePlay服務狀態的方法位於我的Services.java波紋管中:

public class Services 
{ 
    /** 
    * OPERATING CODES 
    */ 
    private static final int GPS_ERR_REQUEST = 9000; 

    /** 
    * Test device for GooglePlayServices, required for 
    * GoogleMaps API V2. 
    * 
    * @param Activity 
    * @result boolean 
    */ 
    public static boolean playServiceState(Activity context) 
    { 
    // Fetch GooglePS operating code 
    int code = GooglePlayServicesUtil.isGooglePlayServicesAvailable(context); 

    // Check if GooglePS is operating 
    if(code == ConnectionResult.SUCCESS) 
    { 
     // We have GooglePS in working condition 
     return true; 
    } 

    // We have an error, check if it can be resolved by user 
    /*if(GooglePlayServicesUtil.isUserRecoverableError(code)) 
    { 
     // We can solve this error pull up GooglePS guide dialog 
     Dialog guide = GooglePlayServicesUtil.getErrorDialog(code, context, GPS_ERR_REQUEST); 

     // Show the guide dialog 
     guide.show(); 

     // Dispose of our activity 
     context.finish(); 
    }*/ 

    // We do not have GooglePS in operating mode 
    // solve error and retry 
    return false; 
    } 

    /** 
    * Tests devices Wi-Fi and Mobile network for a 
    * working Internet connection. 
    * 
    * @param Activity 
    * @return boolean 
    */ 
    public static boolean connectivityServiceState(Activity context) 
    { 
    // Fetch a CM instance 
    ConnectivityManager con = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 

    // Test both carriers for a working Internet connection 
    NetworkInfo wifi = con.getNetworkInfo(ConnectivityManager.TYPE_WIFI); 
    NetworkInfo mobi = con.getNetworkInfo(ConnectivityManager.TYPE_MOBILE); 

    // Check for Internet connection 
    if(wifi.isConnected() || mobi.isConnected()) 
    { 
     // We have a working internet connection 
     return true; 
    } 

    // No internet connection 
    return false; 
    } 

    /** 
    * Test NETWORK service to determine if Google Location 
    * services are enabled or not. 
    */ 
    public static boolean networkServiceState(Activity context) 
    { 
    // Fetch a LM instance 
    LocationManager provider = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE); 

    // Return true for enabled GLS 
    return provider.isProviderEnabled(LocationManager.NETWORK_PROVIDER); 
    } 

    /** 
    * Tests GPS service to determine if GPS 
    * is enabled or not. 
    * 
    * @param Activity 
    * @result boolean 
    */ 
    public static boolean gpsServiceState(Activity context) 
    { 
    // Fetch a LM instance 
    LocationManager provider = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE); 

    // Return true for enabled GPS 
    return provider.isProviderEnabled(LocationManager.GPS_PROVIDER); 
    } 

    /** 
    * Checks if a GPS Radio is present 
    * within the device. 
    * 
    * @param Activity 
    * @return boolean 
    */ 
    public static boolean hasGPS(Activity context) 
    { 
    // Refere to devices package manager for GPS service 
    return context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_LOCATION_GPS); 
    } 
} 

而我的地圖只是在我的MapAgent類中處理,沒有什麼令人印象深刻的只是處理標記。

public MapAgent(FragmentActivity context) 
    { 
    // Fetch the map support fragment 
    SupportMapFragment fragment = ((SupportMapFragment) context.getSupportFragmentManager().findFragmentById(R.id.map)); 

    // Fetch map and view 
    map = fragment.getMap(); 

    // Set initial zoom 
    zoom = 7; 

    // Check if this is the first run 
    final SharedPreferences prefs = context.getSharedPreferences("slo.bankomati.core", Context.MODE_PRIVATE); 

    if(prefs.getBoolean("firstrun", true)) 
    { 
     // Check if database exists and delete it 
     if(Database.exists(context)) 
     { 
     Database.delete(context); 
     } 
     prefs.edit().putBoolean("firstrun", false); 
    } 


    // Fetch all atms 
    try { 
     db = new Database(context); 
     atms = db.getAtms(); 
     db.close(); 
    } catch (Exception e) { 
     // TODO: Temporary solution 
    } 

    // Create an empty array for filtered results 
    filtered = new ArrayList<Atm>(); 
    markers = new HashMap<Marker, Atm>(); 

    // Reference the resources and context 
    this.resources = context.getResources(); 
    this.context = context; 

    // Register camera & info window listener with the map 
    map.setOnCameraChangeListener(this); 
    //map.setOnInfoWindowClickListener(new ShowDetails(context, resources)); 
    map.setOnMarkerClickListener(new ShowDetails(context)); 
    } 

我出的所有想法,我不能讓GOOGLEPLAY服務上運行AVD 2.2+我試圖AVD 4.4谷歌播放API談到GPService但TI不會顯示在地圖上。因此,直接指出我的子問題:

1)如果所有AVD從2.2到4.4都沒有使用GooglePlay服務,那麼我們如何在沒有多個電話的情況下測試多個電話和操作系統版本的應用程序。

2)在老設備上顯示GoogleMap的方式還是更正確的方法我在說Android 2.2+我用最平凡的方式來顯示我的地圖我在Layout xml中有一個SupportMap Fragment元素。我遇到的問題是,有些GooglePlayStore上的2.2和2.3手機將打開應用程序或不打開應用程序,但它們不會顯示地圖,但它們會在底部顯示地圖縮放控件和Google徽標。

3)我添加了我的佈局文件,但我沒有我的android手機了,AVD不允許我測試需要GooglePlayServices的應用程序是否有可能我的佈局顯示波紋管導致覆蓋佈局導致的問題。

我基本上有一個框架佈局在後臺我有谷歌地圖和頂部的角落頂部我有一個微調和一個按鈕。當我上次測試這個應用程序時,它在我的手機HTC One V Android 4.0.3上工作。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    xmlns:map="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/root_view" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 

    <fragment 
     android:id="@+id/map" 
     android:name="com.google.android.gms.maps.SupportMapFragment" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
    /> 

    <Button 
     android:id="@+id/gpsbttn" 
     android:layout_width="28dp" 
     android:layout_height="28dp" 
     android:layout_marginLeft="10dp" 
     android:layout_marginTop="10dp" 
     android:background="@drawable/gps" 
     android:minHeight="28dip" 
     android:minWidth="28dip" 
     android:text="" /> 

    <Spinner 
     android:id="@+id/bankslist" 
     android:layout_width="match_parent" 
     android:layout_height="36dp" 
     android:layout_marginLeft="48dp" 
     android:layout_marginRight="10dp" 
     android:layout_marginTop="10dp" 
     android:entries="@array/banks_list" 
     android:prompt="@string/banks_prompt" /> 

</FrameLayout> 

最簡單的辦法:
爲了誰遇到不能夠通過AVD全面測試您的應用程序這個問題所有的朋友要切換至Genymotion模擬器這是一個生命的救星。它運行速度更快,而且運行起來也不那麼麻煩,它支持真正的手機所具備的每一項功能,並使得自2.2版以來的Android應用測試變得如此簡單。

我去了Genny,從不回頭。

+1

要小心,不要混淆谷歌Play商店與谷歌播放服務。所有這兩個真正分享的名字是;我認爲你的問題主要是指Google Play服務。 –

+0

您是否在LogCat中遇到任何異常?我懷疑'GooglePlayServicesUtil.isGooglePlayServicesAvailable(context)'拋出ClassNotFoundException,因爲設備中沒有可用的名爲'GooglePlayServicesUtil'的類。在這種情況下,你應該捕獲異常並返回'false'。 – ADTC

回答

7

根據對此問題的回答:Google Maps - "App won't run unless you update Google Play services",其中引用了此Google+信息:https://plus.google.com/+AndroidDevelopers/posts/Tyz491d96Ci,在您的應用中使用地圖在仿真器中不受支持;在那篇文章中有很多痛苦的回覆。

其中一個回覆引用此問題:This app won't run unless you update Google Play Services (via Bazaar)它描述了一些仿真器黑客攻擊,如果沒有其他工作正常,您可以嘗試。

+0

感謝您的答覆隊友,我完全忘了這個問題。主要是由於我發現了Genymotion模擬器,它允許從Android 2.2到最新版本測試GP服務依賴應用程序。 –

3

目前Android模擬器不支持Google地圖,因爲它不支持Google地圖API必需的Google Play服務應用程序(在設備< 4.2.2上)。我假設你使用的是Google地圖。看起來像http://www.genymotion.com/提供了一個支持Google Play服務功能的模擬器。嘗試,如果它不工作,嘗試獲得一個真正的設備。對我來說,在模擬器上測試地圖應用程序並沒有什麼意義。我會建議在開發設備上投入一點錢。在處理這些類型的情況時,它將爲自己付出代價並減少你的頭痛。

UPDATE

嘗試切換你的Android的目標,以谷歌API的(同一目標數)

我也拉谷歌從一個植根設備播放services.apk並安裝了通過仿真器命令行。這不是完全推薦的,可能有點麻煩。

在本文檔中,斯科特提供了一個鏈接,它會告訴你的要求Google Play StoreGoogle Play Services.

+0

有系統圖像具有Play服務APK並支持它。他們都沒有Google Play商店本身。我相信這裏的問題是,在仿真中運行時,地圖的最新更新不允許第三方應用程序通過API顯示地圖。 –