1

I'm trying to make an app which has some music instruments to play with. When I play the instrument, the app will draw the music note by following the tempo. The video shown is what I'm trying to put into my app.

Video

Now, I'm trying to draw the music note in my app. Any idea how can I make it?

Matthieu Brucher
  • 21,634
  • 7
  • 38
  • 62
vincentsiau
  • 61
  • 4
  • 11

2 Answers2

0

There's a C# multiplatform music drawing engine Manufaktura Libraries: http://manufaktura-programow.pl/En You can combine it with Xamarin (http://xamarin.com/) and make Android implementation.

Jacek Salamon
  • 64
  • 1
  • 4
0

Can create a custom view:

class StaffView extends View {
    // ...
    @Override
    protected void onDraw(Canvas canvas) { // ... }
}

Draw the staff lines and use SVG or PNG image formats of the Clef, black note, white note, whole note, flat, sharp to draw on the staff with offsets.

A-Sharabiani
  • 17,750
  • 17
  • 113
  • 128