public void initView(ApkBean data, int position) {
   this.bean = data;
   this.mPosition = position;
   this.implInfo =
       implAgent.getImplInfo(
           data.getPackageName(), data.getPackageName(), data.getVersionCode());
   if (null != this.implInfo) {
     this.implInfo
         .setDownloadUrl(data.getrDownloadUrl())
         .setIconUrl(data.getIconUrl())
         .setTitle(data.getName());
     implAgent.bindImplCallback(this, implInfo);
   }
   mBt.setTag(this);
   refresh();
 }