对不起家伙,关于这个话题的另一个人。到目前为止,我已经阅读了有关它的所有帖子,但到目前为止,没有一个答案适合我。我已经花了好几个小时试图解决这个问题,现在开始解决问题之前,我想再试一次。
在XML布局和图形布局之间切换时,我在Eclipse中收到上述错误消息。
Missing styles. Is the correct theme chosen for this layout?
Use the Theme combo box above the layout to choose a different layout, or fix the theme style references.
Failed to find style 'mapViewStyle' in current theme
这是我的布局XML文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<!-- Screen Design for the MAP Tab -->
<TextView
android:id="@+id/vvm_offline"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="15dip"
android:text="You have to be online to display the map."
android:textSize="18dip" />
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="xxx"
android:clickable="true"
android:state_enabled="true" />
<LinearLayout
android:id="@+id/zoom"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
在我的AndroidManifest.xml中,根据我发现的其他提示,一切似乎都应该如此:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.myapp"
android:versionCode="1"
android:versionName="0.1" >
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" >
</uses-permission>
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:label="@string/app_name" >
<uses-library
android:name="com.google.android.maps"
android:required="true" />
<activity
android:name=".myappActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
(etc.)
<activity
android:name=".ViewMapActivity"
android:label="View Map" >
</activity>
(etc.)
顺便说一下,我是否在android:theme中定义了'theme'没有区别。
任何想法如何解决此错误?我可以编译并运行应用程序,但在创建视图时会出现NullPointerException。
答案 0 :(得分:1)
这也发生在我身上..进入res&gt; values&gt; styles.xml
删除上一个主题行并将其放入
<style name="AppBaseTheme" parent="android:Theme.Light">
项目创建期间的eclipse要求为应用程序定义主题。您可能选择了任何Holo theme
。此主题不支持显示错误的MapView
。