Android地图:无法找到风格'mapViewStyle“在当前主题 [英] Android maps:Failed to find style 'mapViewStyle' in current theme

查看:123
本文介绍了Android地图:无法找到风格'mapViewStyle“在当前主题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用的地图在我的应用程序,我得到这个错误, 无法找到风格'mapViewStyle在当前主题

I am trying to use maps in my application and i get this error, Failed to find style 'mapViewStyle' in current theme

我已经生成的密钥正确,并试图在其他地方提供了同样的问题,所有的解决方案。

i have generated the key properly, and have tried all solutions offered for the same problem at other places.

1.my target api and the one mentioned in the manifest file are the same.
2.There is no import.R in my project
3.I have cleaned my project.
4.Uses-library element is a child of the application.

这是我的xml文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <com.google.android.maps.MapView
        android:id="@+id/mapview1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clickable="true"
        android:apiKey="*****************" 
        android:enabled="true"
        />

</LinearLayout>

这就是我的对应的Java文件

and this is my corresponding java file

包com.epidemicator.prototype;

package com.epidemicator.prototype;

import android.os.Bundle;
import com.google.android.maps.MapActivity;

public class Mapacti extends MapActivity {

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.mapview);
    }

    @Override
    protected boolean isRouteDisplayed() {
        // TODO Auto-generated method stub
        return false;
    }
}

请帮我在这里... 谢谢。

please help me out here... thanks.

推荐答案

我的回答可能是晚了,但我希望它会与实际的原因,并确保交易可能是为那些谁是要寻找有帮助关于未来的同样的问题。

My answer may be a late one, but i hope that it'll deals with the actual reason and sure it could be helpful for those who are going to search about the same problem in future.

这类型的错误,

1. Android Google Maps Failed to find style 'mapViewStyle' in current theme
2. Failed to find style 'imageButtonStyle' in current theme 
3. Failed to find style 'editTextStyle' in current theme 
4. Failed to find style 'textViewStyle' in current theme 

任何东西,从上述列表中它可以是

Anything from the above list it may be,

的根本原因是,

我们选择了不可用主题布局

这可能会导致因为,

  1. 选中主题不是的themes.xml 文件。
  2. 可用
  3. 选中主题是属于更高版本 SDK ,但我们目前的目标 SDK 是较低的。
  1. The selected theme is not available in themes.xml file.
  2. The selected theme is belongs to higher version sdk, but our current target sdk is lower one.

这个问题大多发生,

  1. 当你复制整个布局文件,并尝试在你的实施IT项目。 一个。您五月忘了复制的themes.xml 文件 湾您可能有更低的目标SDK ,原布局较高目标SDK创建
  1. when you copy the whole layout file and try to implement it in your project. a. Your may forgot to copy themes.xml file b. You may have lower target sdk, the original layout created with higher target sdk.

对于这个问题的解决方案是,

The Solutions for this problem are,

打开图形布局视图<和查看布局文件/ code>,并期待在右上角。 有你的主题布局已选定。)

(Open and View the layout file in the Graphical Layout View, and look at the top Right corner. There your themes for the layout have been selected.)

  1. 那么单击下拉列表主题选项,并选择可用的主题根据项目主题目标SDK主题。                        (OR)
  2. 如果在主题自定义一,如果你需要它,然后复制的themes.xml 文件,从您复制布局XML 文件的源项目。                        (OR)
  3. 如果在主题 SDK 主题,如果你需要的话,那么根据您选择的主题
  4. 更改目标
  1. So click the dropdown list for theme selection and choose the available themes according to your project themes and targeted sdk themes. (OR)
  2. If the theme is a custom one , if you are required it , then copy the themes.xml file to your project from the source where you copied the layout xml file. (OR)
  3. If the theme is sdk avail theme, if you are required it , then change your target according to your selected theme.

希望,这可能是别人有帮助的。

Hope,This might be helpful for somebody.

这篇关于Android地图:无法找到风格'mapViewStyle“在当前主题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆