Thiếu phong cách. Là chủ đề chính xác được chọn cho bố cục này? Sử dụng hộp tổ hợp Chủ đề phía trên bố cục để chọn bố cục khác hoặc sửa các tham chiếu kiểu chủ đề. Không thể tìm thấy phong cách
mapViewStyle
trong chủ đề hiện tại.
Tôi đã thử mọi giải pháp có sẵn để giải quyết vấn đề này nhưng dường như không có gì hiệu quả. Tôi đã bao gồm thư viện trong tệp kê khai. Tôi thậm chí đã tạo kiểu là style.xml, tôi cũng đã chọn mục tiêu xây dựng Google Apis.
Ai đó có thể xin vui lòng cho tôi một giải pháp?
đây là tập tin xml của tôi :
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/AppTheme"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.google.android.maps.MapView
android:id="@+id/themap"
style="@style/mapViewStyle"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="here i have my key"
android:clickable="true"
android:enabled="true" />
</RelativeLayout>
Đây là đoạn trích rõ ràng của tôi :
<uses-library android:name="com.google.android.maps" />
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Second" />
<activity android:name=".Third" android:theme="@android:style/Theme.Black"/>
</application>
đây là tệp style.xml của tôi
<resources>
<style name="mapViewStyle" parent="@android:style/Theme.Black">
</style>
</resources>
minSDKVersion
và targetSdkVersion
trong build.gradle
tập tin làm việc cho tôi.
@style/AppTheme
thiếu của bạn?