문제

I build app for drawing notes in android using MusicXML and I look for some quality parser to extract all the necessary information to do it.

How I can parse MusicXML (.mxl) in Android? (some library?)

도움이 되었습니까?

해결책

You should be able to parse the files using a standard XML parser available in Android. With .mxl files you need to parse the zip file, then parse the XML content inside it. One advantage of using XML for MusicXML is that there are XML parsers available on just about every platform, without requiring music-specific software. Android doesn't yet support music apps as well as iOS, so there are fewer music-specific SDKs, like SeeScore, available on Android compared to iOS.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top