我正在使用fragmentActivity,它已经扩展了OnMapReadyCallback,并且无法扩展活动或appcompat。
这使我在setSupportActionBar上出错。
Java:
public class MapsActivity extends FragmentActivity implements
OnMapReadyCallback
toolbar = (Toolbar) findViewById(R.id.app_bar);
setSupportActionBar(toolbar);
这是出现的错误 - 错误:(80,9)错误:找不到符号方法setSupportActionBar(工具栏)
活动布局:
<include
android:id="@+id/app_bar"
layout="@layout/app_bar"/>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/map"
xmlns:tools="http://schemas.android.com/tools"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.pos.gisapp.MapsActivity" />
实际的app_bar.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:elevation="4dp">
</android.support.v7.widget.Toolbar>
答案 0 :(得分:0)
使用最新版本的支持库,您应该Activity
延长AppCompatActivity
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;