0

I'd like to modify lockscreen to make it opaque in Android 4.x for some experimental purposes. I know there are plenty of questions about lockscreen and lots suggestions to write a new application from scratch. Those won't work for me. I want to work with existing android source, modify and recompile it.

Any thoughts/suggestions???

  • To work with the 'existing android source, modify and recompile it', you would have to be capable of flashing your own firmware after having modified the OS. Is this something you're prepared to do? Or do you want to write your own application, **USING** the android source? – JRaymond Apr 16 '12 at 21:36
  • @JRaymond, '>Is this something you're prepared to do?' - Yes this is what I like to do. – user1337252 Apr 16 '12 at 21:53

1 Answers1

0

Well, this is a big undertaking, but you might start here, or, more in depth, at the android source repository here, if you're looking to do something much more in depth.

As for where in the source to look, the KeyGuard (which is the real name) stuff is under /frameworks/base/core/res/res/layout/ for the layout files and /frameworks/base/policy/src/com/android/internal/policy/impl/ for the Java source.

Good luck!

JRaymond
  • 11,625
  • 5
  • 37
  • 40