Question

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.

Was it helpful?

Solution

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"));

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top