第三方包中、使用以下方式获取资源文件/控件:
int btnId = getResources().getIdentifier("button", "id",context.getPackageName());
Button btn = (Button) view.findViewById(btnId );
第三方包中、使用以下方式获取资源文件/控件:
int btnId = getResources().getIdentifier("button", "id",context.getPackageName());
Button btn = (Button) view.findViewById(btnId );