使用适用于Android的Google Maps api v2扩充视图

时间:2013-05-20 22:45:37

标签: android android-fragments actionbarsherlock google-maps-android-api-2 android-support-library

请帮忙。我已经尝试并实施了所有其他解决方案,但仍然没有运气在我的应用程序中集成谷歌地图。

目前的问题是我的片段中的膨胀点

05-21 00:17:24.629  26619-26619/com.wimedias12.orderr          E/AndroidRuntime: FATAL EXCEPTION: main
    java.lang.NoClassDefFoundError: com.google.android.gms.R$styleable
    at com.google.android.gms.maps.GoogleMapOptions.createFromAttributes(Unknown Source)
    at com.google.android.gms.maps.SupportMapFragment.onInflate(Unknown Source)
    at android.support.v4.app.FragmentActivity.onCreateView(FragmentActivity.java:279)
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:676)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:749)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:749)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
    at com.wimedias12.orderr.RestaurantFragments.RestaurantHomeFragment.onCreateView(RestaurantHomeFragment.java:66)

作为答案弹出的第一件事是以正确的方式引用谷歌服务库,但这是设置。

所以这是我当前的配置,请尽可能帮助我。

restaurant_home.xml - 我希望地图显示的片段布局

... Other fragment layout XML code ...

<LinearLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:id="@+id/mapMap"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp">
<fragment
        android:id="@+id/mapMapppp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment" />

</LinearLayout>

... Rest of the fragment layout XML ... 

我尝试使用MapView但没有运气,我读到使用片段更容易。

RestaurantHomeFragment.java - 片段代码

public class RestaurantHomeFragment extends SherlockFragment {
 @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.restaurant_home, container, false); //<-- This line breakes
 ....
}

此片段托管在SherlockFragmentActivity中。

AndroidManifest.xml

<uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="14" />

    <permission android:name="com.wimedias12.orderr.MAPS_RECEIVE" android:protectionLevel="signature" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <uses-permission android:name="com.wimedias12.orderr.MAPS_RECEIVE" />

    <uses-feature android:glEsVersion="0x00020000" android:required="true"/>

   <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/Theme.VPI" >
       <uses-library android:name="com.google.android.maps" />
....
<meta-data
           android:name="com.google.android.maps.v2.API_KEY"
           android:value="AIzaXxXxXXXxXxxXx-WHmjbRpFz4eOqWBXdqUtQ" />
   </application>

这是我的项目属性,只是为了验证库是否被很好地引用。 enter image description here

非常感谢任何帮助。谢谢!

更新

@CommonsWare答案是正确的。但是因为我使用的是Android Studio,即IntelliJ Idea,我觉得我需要回答一下我是如何使它工作的。

我刚刚从“项目结构”窗口中删除了所有引用并再次逐个添加,并且它以某种方式工作,配置仍然与上面显示的图像相同。我想IntelliJ在引用库时遇到了一些问题。

因此,正确引用图书馆就是答案。

P.S。我最终在SherlockFragment中使用了MapView。谢谢你的帮助。

2 个答案:

答案 0 :(得分:3)

您似乎使用的是Android Studio或IntelliJ IDEA,我无法对此发表评论。

但是,您的错误通常与您为Google Play服务添加JAR的项目相关联,而不是整个Android库项目。以下是附加Android库项目in Eclipsefrom the command line的说明 - 您必须找到所选IDE的等效说明。

另请注意,您目前正尝试在片段中使用片段,方法是RestaurantHomeFragment使包含SupportMapFragment的布局膨胀。这是可能的,但除非你有明确的理由这样做,否则我不会,因为嵌套的片段增加了复杂性。

答案 1 :(得分:0)

为什么不尝试这样的事情:

public class MainActivity extends FragmentActivity {

private GoogleMap map;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main); <--This line..I dont see why would you inflate it, like you did

    map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
    map.setMyLocationEnabled(true);
}