我现在在Android设备上呆了2周。在我的第一个项目中,我尝试设置一个带有开关和placeautocompletefragment,然后是mapfragment的工具栏。 因此,除了工具栏上的Placeautocompletefragment之外,地图也可以正常工作,工具栏也是如此。 调试时,我发现初始化Placeautocompletefragment后,它仍然为空。
地点和地图api被激活,清单中的键。
有人可以告诉我,我在哪里弄错了,并告诉我如何解决它? 我无法对此设置NULL值的侦听器。 我在互联网上找到的每个样本都带有fragmentmanager,该片段自API 28起就已弃用,因此对我实际上毫无用处。
谢谢。
格里兹
编辑:ativity_maps.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapsActivity">
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:elevation="20dp"
app:title="Fake GPS"
android:visibility="visible">
<fragment
android:id="@+id/place_autocomplete_fragment"
android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
android:layout_height="wrap_content"
android:layout_width="match_parent"
/>
</android.support.v7.widget.Toolbar>
<fragment android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment"/>
Mapsactivity.kot
class MapsActivity : AppCompatActivity(), OnMapReadyCallback {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_maps)
val toolbar = findViewById<Toolbar>(R.id.toolbar)
setSupportActionBar(toolbar)
val mapFragment = supportFragmentManager
.findFragmentById(R.id.map) as SupportMapFragment
mapFragment!!.getMapAsync(this)
}
override fun onCreateOptionsMenu(menu: Menu): Boolean {
menuInflater.inflate(R.menu.menu, menu)
onOffSwitch = menu.findItem(R.id.switchIO).actionView as Switch
onOffSwitch?.setOnCheckedChangeListener { _, isChecked -> (removed code here, cause unnecessary) }
autocompleteFragment = supportFragmentManager.findFragmentById(R.id.place_autocomplete_fragment) as? PlaceAutocompleteFragment
}
}