Is there a difference between `val textView = find...
# getting-started
a
Is there a difference between
val textView = findViewById(R.id.text_view) as? TextView
and
val textView = findViewbyId(R.id.text_view) as TextView?
? Both give the value an inferred type of
TextView?
and they look like they're doing the same thing but I don't know how to be sure.