我有一些Android应用,它混合了Java和Kotlin,在此应用中我有Listview,其中包含可用的WiFi
网络。当我选择此ListView
的元素时,弹出Dialog请求用户干预,到目前为止一切正常。现在,当我按Submit button时,此Dialog
隐藏,并且所选ListView
项的ImageView应为Steelblue颜色,但事实并非如此:
dialog.buttonNewGroup.setOnClickListener { _: View? ->
val newGroupDialog: MaterialDialog = MaterialDialog.Builder(this@AddDevicesActivity)
.title(R.string.new_group_dialog_title)
.content(R.string.new_group_dialog_content)
.inputType(InputType.TYPE_CLASS_TEXT
+ InputType.TYPE_TEXT_VARIATION_NORMAL
+ InputType.TYPE_TEXT_FLAG_AUTO_CORRECT + InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE + InputType.TYPE_TEXT_FLAG_CAP_SENTENCES)
.inputRange(1, 32)
.input(R.string.group_name, 0, false, { _, _ -> })
.negativeText(R.string.cancel)
.positiveText(R.string.submit)
.onPositive { dialog, _ ->
// Add new group to database
mDb.addGroup(VentGroup(dialog.inputEditText?.text.toString()))
// Get refreshed list of the groups
mGroups.clear()
mDb.getGroups().toCollection(mGroups)
mGroupsAdapter.notifyDataSetChanged()
this@AddDevicesActivity.imageView.setBackgroundColor(Color.parseColor("0xff4682b4")) // IMAGE BACKGROUND DOES NOT CHANGE TO "Steelblue" color
}
.build()
newGroupDialog.show()
}
我在代码的这一部分添加了断点并执行了 DOES GETS ,但background
的{{1}}没有变化。为什么呢?
P.S。:我是ImageView
的新手,而不是Kotlin
中的新人,我在向下投票前要求一点点理解,因为我知道背后肯定会有一些愚蠢的错误。
答案 0 :(得分:1)
hi KernelPanic试试,
(dialog.actiivty as AddDevicesActivity).imageView.setBackgroundColor(Color.parseColor("0xff4682br"))