Back to project page RssReader.
The source code is released under:
MIT License
If you think the Android project RssReader 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 org.robolectric.shadows; /*w w w.j a v a 2s. c o m*/ import org.robolectric.annotation.Implementation; import org.robolectric.annotation.Implements; import android.support.v7.internal.view.SupportMenuInflater; import android.view.Menu; @Implements(SupportMenuInflater.class) public class ShadowSupportMenuInflater extends ShadowMenuInflater { @Implementation public void inflate(int menuRes, Menu menu) { super.inflate(menuRes, menu); } }