91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中 library module 生成 class

發布時間:2020-11-27 16:34:01 來源:億速云 閱讀:201 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關怎么在Android中 library module 生成 class,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

Library module 生成 class

在 library module 下啟用 Data Binding 很簡單,跟 application module 一樣,加上:

android { 
 dataBinding {
  enabled = true
 }
}

對應生成的 binding 類會在 manifest 里面指定的 package name 下的 databinding 包下。

于是坑的地方就在這里了,編譯不過了…

為啥呢?報錯說 symbol 找不到…于是在 module 的 build 下查看生成的 Binding 類…臥槽?!怎么是 abstract 的?怎么都找不到那些 get 方法了?雖然我也不知道為什么我們會從 binding 類里面去拿之前 set 進去的 ViewModel。

WTF?!

What happened

Fuck 歸 fuck,究竟怎么回事還是要研究一下的。

是我們姿勢錯了?Dagger2 生成哪里出問題了?還是 Data Binding 的 bug 呢?

因為之前也研究過 data binding 生成部分的代碼,所以找到問題所在沒有花太多時間,這里不多啰嗦,直接看對應位置。

在 CompilerChief 的 writeViewBinderInterfaces 中:

public void writeViewBinderInterfaces(boolean isLibrary) {
 ensureDataBinder();
 mDataBinder.writerBaseClasses(isLibrary);
}

對應 DataBinder:

public void writerBaseClasses(boolean isLibrary) {
 for (LayoutBinder layoutBinder : mLayoutBinders) {
  try {
   Scope.enter(layoutBinder);
   if (isLibrary || layoutBinder.hasVariations()) {
    String className = layoutBinder.getClassName();
    String canonicalName = layoutBinder.getPackage() + "." + className;
    if (mWrittenClasses.contains(canonicalName)) {
     continue;
    }
    L.d("writing data binder base %s", canonicalName);
    mFileWriter.writeToFile(canonicalName,
      layoutBinder.writeViewBinderBaseClass(isLibrary));
    mWrittenClasses.add(canonicalName);
   }
  } catch (ScopedException ex){
   Scope.defer(ex);
  } finally {
   Scope.exit();
  }
 }
}

這里調用了 LayoutBinder(真正的實現類會調用 writeViewBinder):

public String writeViewBinderBaseClass(boolean forLibrary) {
 ensureWriter();
 return mWriter.writeBaseClass(forLibrary);
}

可以看到如果是 library module,我們會做特殊的編譯,而不會生成真正的實現:

public fun writeBaseClass(forLibrary : Boolean) : String =
 kcode("package ${layoutBinder.`package`};") {
  Scope.reset()
  nl("import android.databinding.Bindable;")
  nl("import android.databinding.DataBindingUtil;")
  nl("import android.databinding.ViewDataBinding;")
  nl("public abstract class $baseClassName extends ViewDataBinding {")
  layoutBinder.sortedTargets.filter{it.id != null}.forEach {
   tab("public final ${it.interfaceClass} ${it.fieldName};")
  }
  nl("")
  tab("protected $baseClassName(android.databinding.DataBindingComponent bindingComponent, android.view.View root_, int localFieldCount") {
   layoutBinder.sortedTargets.filter{it.id != null}.forEach {
    tab(", ${it.interfaceClass} ${it.constructorParamName}")
   }
  }
  tab(") {") {
   tab("super(bindingComponent, root_, localFieldCount);")
   layoutBinder.sortedTargets.filter{it.id != null}.forEach {
    tab("this.${it.fieldName} = ${it.constructorParamName};")
   }
  }
  tab("}")
  nl("")
  variables.forEach {
   if (it.userDefinedType != null) {
    val type = ModelAnalyzer.getInstance().applyImports(it.userDefinedType, model.imports)
    tab("public abstract void ${it.setterName}($type ${it.readableName});")
   }
  }
  tab("public static $baseClassName inflate(android.view.LayoutInflater inflater, android.view.ViewGroup root, boolean attachToRoot) {") {
   tab("return inflate(inflater, root, attachToRoot, android.databinding.DataBindingUtil.getDefaultComponent());")
  }
  tab("}")
  tab("public static $baseClassName inflate(android.view.LayoutInflater inflater) {") {
   tab("return inflate(inflater, android.databinding.DataBindingUtil.getDefaultComponent());")
  }
  tab("}")
  tab("public static $baseClassName bind(android.view.View view) {") {
   if (forLibrary) {
    tab("return null;")
   } else {
    tab("return bind(view, android.databinding.DataBindingUtil.getDefaultComponent());")
   }
  }
  tab("}")
  tab("public static $baseClassName inflate(android.view.LayoutInflater inflater, android.view.ViewGroup root, boolean attachToRoot, android.databinding.DataBindingComponent bindingComponent) {") {
   if (forLibrary) {
    tab("return null;")
   } else {
    tab("return DataBindingUtil.<$baseClassName>inflate(inflater, ${layoutBinder.modulePackage}.R.layout.${layoutBinder.layoutname}, root, attachToRoot, bindingComponent);")
   }
  }
  tab("}")
  tab("public static $baseClassName inflate(android.view.LayoutInflater inflater, android.databinding.DataBindingComponent bindingComponent) {") {
   if (forLibrary) {
    tab("return null;")
   } else {
    tab("return DataBindingUtil.<$baseClassName>inflate(inflater, ${layoutBinder.modulePackage}.R.layout.${layoutBinder.layoutname}, null, false, bindingComponent);")
   }
  }
  tab("}")
  tab("public static $baseClassName bind(android.view.View view, android.databinding.DataBindingComponent bindingComponent) {") {
   if (forLibrary) {
    tab("return null;")
   } else {
    tab("return ($baseClassName)bind(bindingComponent, view, ${layoutBinder.modulePackage}.R.layout.${layoutBinder.layoutname});")
   }
  }
  tab("}")
  nl("}")
 }.generate()
}

那么問題來了,這里的這個只是用來使 library module 編譯能通過的 abstract class,只生成了所有 variable 的 setter 方法啊,getter 呢?坑爹呢?

看來是 Google 壓根沒考慮到還需要這個。寫 Kotlin 的都少根筋嗎?

規避方案

為了讓 library module 能編譯通過(這樣才能在 application module 生成真正的 Binding 實現),只好避免使用 getter 方法,幸而通過之前開發的 DataBindingAdapter 和 lambda presenter 確實能規避使用 getter 去拿 viewmodel。

不管怎么說,希望 Google 能在下個版本修復這個問題。就是 iterator 一下,寫個 abstract 接口而已。

關于怎么在Android中 library module 生成 class就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

恩施市| 文成县| 平安县| 大邑县| 长泰县| 淳安县| 怀集县| 马龙县| 石河子市| 宣武区| 且末县| 普兰县| 宜宾县| 定安县| 金平| 虞城县| 盱眙县| 新竹市| 乐山市| 开原市| 松滋市| 定日县| 英山县| 上林县| 乌苏市| 巴彦淖尔市| 嘉荫县| 滨海县| 全椒县| 谷城县| 万安县| 连城县| 威远县| 乐安县| 林西县| 稷山县| 蚌埠市| 娄烦县| 新闻| 叶城县| 信阳市|