Hello I was wondering how to do the following:

CheckBoxPreference mCheckBox = (CheckBoxPreference) findPreference("key");

except in mirah?                                     ^^^^^^^^^^^^^^^^^^^^^^^
                                                                This cast here is what I don't know how to translate into mirah.

有帮助吗?

解决方案

From what I understand, casting in Mirah is in the form of wrapping the object in the form of TypeToCastTo(ObjectToCast), for example:

mCheckBox = CheckBoxPreference(findPreference("key"));

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top