Juahya - Android 解析器


Apache
跨平台
Java

软件简介

Juahya 是一个android 的实时解析 xml 转化为 view 的解析器

示例代码:

IFlateServicePoxy service = new IFlateServicePoxy();
        service.setIJuahyaLayoutInflateListener(DemoListActivity.this);
        String result="<LinearLayout android:orientation=\"vertical\" "
                    +" android:layout_width=\"fill_parent\" android:layout_height=\"fill_parent\" >"
                    +"</LinearLayout>";
        View view= service.inflate(result, DemoListActivity.this);
        setContentView(view);