我们可以在Android中创建自定义合成Kotlin扩展吗



我对Android版的Kotlin Synthetic Extensions感兴趣,并考虑是否可以对自定义文件也这样做,比如我们保存在项目中的原始XML文件。例如,让我们考虑Kotlin中的合成视图。

import kotlinx.android.synthetic.main.fragment_profile_management.*
textview_shop_name.text = merchant.establishmentName

生成的代码是这样的:

TextView textView = (TextView) _$_findCachedViewById(com.goharsha.testapp.R.id.textview_shop_name);
Intrinsics.checkExpressionValueIsNotNull(textView, "textview_shop_name");
Merchant merchant3 = this.merchant;
if (merchant3 == null) {
Intrinsics.throwUninitializedPropertyAccessException("merchant");
}
textView.setText(merchant3.getEstablishmentName());

_$_findCachedViewById方法也被生成为如下相同的类:

private HashMap _$_findViewCache;
public View _$_findCachedViewById(int i) {
if (this._$_findViewCache == null) {
this._$_findViewCache = new HashMap();
}
View view = (View) this._$_findViewCache.get(Integer.valueOf(i));
if (view != null) {
return view;
}
View view2 = getView();
if (view2 == null) {
return null;
}
View findViewById = view2.findViewById(i);
this._$_findViewCache.put(Integer.valueOf(i), findViewById);
return findViewById;
}

由于这是Android特有的,我猜这可以在Kotlin中完成,也许我可以将其扩展到自定义的原始XML文件,例如配置文件,并将它们解析为一个对象,这可能会很有趣。

然而,我不知道该怎么做。我知道Kotlin中的扩展函数,但在这里,整个文件是基于导入综合生成的。还有一个神奇的地方,当我反编译应用程序时,没有找到这个Kotlin导入。

我还试着查看核心的ktx和查看ktx库,但到目前为止没有成功。知道怎么做吗?

是的,可以做到这一点,您需要做三件事才能做到。

  1. 编写Gradle插件
  2. 编写一个Kotlin编译器插件(API没有文档,所以准备好迎接真正的挑战(
  3. 编写一个IntelliJ插件(对于诸如在合成字段上转到以导航到XML文件之类的功能(

这些合成视图生成是通过这种方式完成的。如果你想尝试制作这样的东西,这里有一些资源。

  • Kotlin Conf幻灯片,用于编写您的第一个Kotlin编译器插件
  • 用Arrow Meta编写Kotlin编译器插件
  • Kotlin Android扩展插件源代码
  • Arrow元文档

相关内容

  • 没有找到相关文章

最新更新