Android模板引擎 - 就像Mustache一样

时间:2012-12-12 08:45:17

标签: android

我正在寻找Android的模板引擎,就像Mustache一样。我有一个包含大量信息的JSON对象,我有一个带有Textviews加载的线性布局。现在,我希望能够填写所有这些,而无需在代码中手动分配它们。这是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对象,它将为我完成这项工作。

这样存在吗?

0 个答案:

没有答案