Can't post all of the codes as they are scattered.
I populate a list with all available fonts.
Dim lstFont As List
lstFont.Initialize
lstFont.AddAll(File.ListFiles(File.DirAssets))
Allow user to select from the list
Dim Ret As Int
Ret = InputList(lstFont, MsgSelect, fsVal)
Change the custom listview font. StateManager.fsFirstFont is the name of the file user has selected. Library type.
lstView.SetTextFont(Typeface.LoadFromAssets(StateManager.fsFirstFont))
I will add the warning to the attribute. I just don't like the fact the whole screen is filled with this warning. I want to track any other warnings easily.