Back to project page android-Notifier.
The source code is released under:
GNU General Public License
If you think the Android project android-Notifier listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package rickflail.messaging.notifier; //from ww w .ja va2 s . c o m import android.content.Context; import android.view.Menu; import android.view.MenuInflater; public class MenuInflaterCustom extends MenuInflater { public MenuInflaterCustom(Context context) { super(context); } @Override public void inflate(int menuRes, Menu menu) { } }