- avoided a few compiler warnings about null values

This commit is contained in:
Juha Heinanen
2019-04-09 10:27:05 +03:00
parent 2c92b1b6ea
commit 69daf94c37
8 changed files with 17 additions and 19 deletions
@@ -23,7 +23,7 @@ class ContactsActivity : AppCompatActivity() {
val listView = findViewById(R.id.contacts) as ListView
val aor = intent.extras.getString("aor")
val aor = intent.getStringExtra("aor")!!
clAdapter = ContactListAdapter(this, Contact.contacts(), aor)
listView.adapter = clAdapter
listView.isLongClickable = true