我在访问应用的地图部分时遇到错误 我在我的应用程序中包含谷歌播放服务依赖项是否有我需要包含在其中的任何其他库?如何添加库?互联网上的所有教程都使用了较新版本的android studio,而我使用的是最新版本。
enter code here
FATAL EXCEPTION: main
"java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.zeda.TaxiTown/com.zeda.TaxiTown.map}:
android.view.InflateException: Binary XML file line #18: Error inflating class fragment"
在我的android地图应用程序中这是什么意思?
XML
<?xml version="1.0" encoding="utf-8"?>
<!-- This can go anywhere in your layout (see other demos for some examples). -->
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"/>
JAVA文件中包含此内容 包com.zeda.TaxiTown;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class map extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_map);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.map, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:0)
我转而使用MapView而且工作正常!