我正在尝试在Kotlin中编写当前的应用程序,但无法将null强制转换为非null类型。我尝试了很多不同的东西,但是我一直遇到同样的问题。不知道该怎么办。任何帮助将不胜感激!
代码:
class MapsActivity : AppCompatActivity(), OnMapReadyCallback {
private lateinit var mMap: GoogleMap
private lateinit var button: Button
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_maps)
val mapFragment = supportFragmentManager
.findFragmentById(R.id.mapFragment) as SupportMapFragment
mapFragment.getMapAsync(this)
}
override fun onMapReady(googleMap: GoogleMap) {
mMap = googleMap;
setUpMap();
}
fun setUpMap() {
val et = findViewById<EditText>(R.id.editText);
val et2 = findViewById<EditText>(R.id.editText2);
val lat = et.getText().toString().toDouble();
val lng = et2.getText().toString().toDouble();
//val ll = LatLng(lat, lng)
button = findViewById(R.id.button) as Button
button.setOnClickListener {
goToLocation(lat, lng, 11.0f);
}
}
fun goToLocation(lat:Double, lng:Double, zoom:Float) {
val ll = LatLng(lat, lng);
val update = CameraUpdateFactory.newLatLngZoom(ll, zoom);
mMap.addMarker(MarkerOptions().position(ll).title("Marquette, Michigan"))
mMap.moveCamera(update);
}
XML:
<LinearLayout 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"
android:orientation="vertical"
android:paddingBottom="16dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
tools:layout="@layout/activity_maps">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName" />
<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName" />
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Submit"/>
<!-- android:onClick="locate"/> -->
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/mapFragment"
/>
日志:
原因:kotlin.TypeCastException:不能将null强制转换为非null类型com.google.android.gms.maps.SupportMapFragment 在com.example.nrice.mapsproject.MapsActivity.onCreate(MapsActivity.kt:38)
答案 0 :(得分:1)
编译错误指向代码中的以下行:
val mapFragment = supportFragmentManager
.findFragmentById(R.id.mapFragment) as SupportMapFragment
在这里,您正在将可为空的内容(即findFragmentById
的返回值)类型转换为您已定义为不可为空的类型的内容,即SupportMapFragment
理想情况下,您应该阅读有关Kotlin空处理的信息。该书快速阅读,不花时间,并且可以在此处清除您的理解。
而且,当您回来时,您会发现固定代码的方法不止一种,例如:
(activity.supportFragmentManager.findFragmentById(fragmentId) as SupportMapFragment?)?.let {
it.getMapAsync(this)
}
快速提示:Kotlin中可空类型和不可空类型之间的区别是该类型后跟?
。因此,这里SupportMapFragment?
指定类型为SupportMapFragment,并且可以为null。
答案 1 :(得分:1)
尝试一下
val mapFragment = childFragmentManager.findFragmentById(R.id.map_frag) as? SupportMapFragment
mapFragment.getMapAsync(this)
答案 2 :(得分:1)
如果您在 Fragment 中使用 SupportMapFragment
您必须在
override fun onViewCreated(view: View, savedInstanceState: Bundle?)
不在
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View?
答案 3 :(得分:0)
val mapFragment = supportFragmentManager.getFragmentById(R.id.mapFragment) as? SupportMapFragment
mapFragment?.getMapAsync(this)
作为参考,您应该阅读this
答案 4 :(得分:0)
在科特林修复
private lateinit var mMap: GoogleMap
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val mapFragment: SupportMapFragment? = map as SupportMapFragment?
mapFragment?.getMapAsync(this)
}
override fun onMapReady(googleMap: GoogleMap?) {
if (googleMap != null) {
mMap = googleMap
}
val sydney = LatLng(-34.0, 151.0)
mMap.addMarker(MarkerOptions().position(sydney).title("Marker in Sydney"))
mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney))
}