我正在尝试在layout
mapview
和textfield
以及buttons
对齐组成的layout
我试过使用这个xml
文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/google_maps"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="@string/maps_key" />
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:padding="5dp"
android:orientation="vertical">
<TextView
android:text="@string/txtLocationDescription"
android:layout_height="wrap_content"
android:id="@+id/textView1"
android:layout_width="wrap_content"></TextView>
<EditText
android:id="@+id/editText1"
android:layout_height="wrap_content"
android:layout_width="match_parent"></EditText>
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1.0"
android:layout_width="match_parent">
<Button android:id="@+id/Button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="@string/btnAddNewLocation"></Button>
<Button android:layout_height="wrap_content"
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_weight="0.5"
android:text="@string/btnCancelAddingLocation"></Button>
</LinearLayout>
</LinearLayout>
</LinearLayout>
但我收到了这个错误:
09-28 14:49:47.476: ERROR/AndroidRuntime(455): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.android.uis/com.android.uis.LocationManagementActivity}: android.view.InflateException: Binary XML file line #8: Error inflating class com.google.android.maps.MapView
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1622)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1638)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.app.ActivityThread.access$1500(ActivityThread.java:117)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:928)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.os.Handler.dispatchMessage(Handler.java:99)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.os.Looper.loop(Looper.java:123)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.app.ActivityThread.main(ActivityThread.java:3647)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at java.lang.reflect.Method.invokeNative(Native Method)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at java.lang.reflect.Method.invoke(Method.java:507)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at dalvik.system.NativeStart.main(Native Method)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): Caused by: android.view.InflateException: Binary XML file line #8: Error inflating class com.google.android.maps.MapView
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.view.LayoutInflater.createView(LayoutInflater.java:518)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:570)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.view.LayoutInflater.rInflate(LayoutInflater.java:623)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.view.LayoutInflater.inflate(LayoutInflater.java:408)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:207)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.app.Activity.setContentView(Activity.java:1657)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at com.android.uis.LocationManagementActivity.onCreate(LocationManagementActivity.java:10)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1586)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): ... 11 more
09-28 14:49:47.476: ERROR/AndroidRuntime(455): Caused by: java.lang.reflect.InvocationTargetException
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at java.lang.reflect.Constructor.constructNative(Native Method)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at java.lang.reflect.Constructor.newInstance(Constructor.java:415)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at android.view.LayoutInflater.createView(LayoutInflater.java:505)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): ... 21 more
09-28 14:49:47.476: ERROR/AndroidRuntime(455): Caused by: java.lang.IllegalArgumentException: MapViews can only be created inside instances of MapActivity.
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at com.google.android.maps.MapView.<init>(MapView.java:291)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at com.google.android.maps.MapView.<init>(MapView.java:264)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): at com.google.android.maps.MapView.<init>(MapView.java:247)
09-28 14:49:47.476: ERROR/AndroidRuntime(455): ... 24 more
问题是什么,我该怎么做?
答案 0 :(得分:3)
你不能把东西放在MapView
里面。更好的解决方案是将MapView
置于RelativeLayout
内,并在顶层RelativeLayout
内的按钮上布置按钮。
编辑:
基本示例:
<RelativeLayout>
<MapView></MapView>
<Button></Button>
<Button></Button>
<TextView></TextView>
*****Any other layout you want ****
</RelativeLayout>
答案 1 :(得分:2)
您的活动应该扩展MapACtivity以避免此异常发生。在崩溃日志中查看此行。
MapViews can only be created inside instances of MapActivity.
答案 2 :(得分:0)
使用relativelayout,alignparent variants。