org.xutils.view.annotation.ViewInject Java Examples

The following examples show how to use org.xutils.view.annotation.ViewInject. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MainActivity.java    From Study_Android_Demo with Apache License 2.0 5 votes vote down vote up
private void injectView(){
    Class clazz = getClass();
    try {
        //找到名为tv的成员变量
        Field field = clazz.getDeclaredField("tv");
        //获取tv的注解
        ViewInject viewInject = field.getAnnotation(ViewInject.class);
        //获取tv的viewid
        int viewId = viewInject.value();
        //绑定该控件
        tv = (TextView) findViewById(viewId);
    } catch (NoSuchFieldException e) {
        e.printStackTrace();
    }
}