Back to project page ixming-android-inject.
The source code is released under:
Apache License
If you think the Android project ixming-android-inject 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.ixming.android.inject.themed; //www .j av a 2s. co m import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.ixming.android.inject.ResTargetType; /** * ??????Activity??View???????????? * <br/> * ???????????????????????????? * <br/> * @author Yin Yong */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface ThemedResInject { /** * res/ ???????ID???????R.string.app_name??app_name */ String name(); /** * ????????????????????? * <p> * ????????string????????????????{@link ResTargetType#String}? * ????string?????????????????????????{@link ResTargetType#Text}? * </p> * @see {@link ResTargetType} */ ResTargetType type(); }