我正在寻找适用于 Android 的模板引擎,就像 Mustache 一样。我有一个包含大量信息的 JSON 对象,并且我有一个包含大量 Textview 的线性布局。现在,我希望能够填写所有这些内容,而无需在代码中手动分配它们。这是一个文本视图的示例:
<TextView
android:id="@+id/computer_processor_clock_speed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:text="{{computer.clock_speed}}"
android:textAppearance="?android:attr/textAppearanceSmall" />
我知道有一个 Android 版本的 Mustache,但它所做的只是输入和输出字符串,我想基本上将我的线性布局和我的 JSON 对象传递给它,它会为我完成这项工作。
那么这存在吗?