1
我有一個名爲customObjectList
的自定義對象的列表。我希望它綁定到AlertDialog.Builder.setMultiChoiceItems()
,這就需要首先轉換成的CharSequence,
這是我要做的事:customObjectList.toArray(new CharSequence[customObjectList.size()])
但我得到這個錯誤:將自定義對象的列表轉換爲CharSequence
java.lang.ArrayStoreException: source[0] of type com.idea.customobject cannot be stored in destination array of type java.lang.CharSequence[]
什麼是轉換的正確方法是什麼?
嘿,你是否設法解決它? – Vucko