Mustache のような Android 用のテンプレート エンジンを探しています。大量の情報を含む 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 オブジェクトを渡したいのですが、それが仕事をしてくれます。
それで、これは存在しますか?