WEB开发网
开发学院手机开发Android 开发 android中通过pull解释器解析xml 阅读

android中通过pull解释器解析xml

 2012-11-06 16:24:20 来源:WEB开发网   
核心提示: android中已经集成了pull解释器,所以不用添加jar文件,android中通过pull解释器解析xml,如果在javaee中使用pull需要手动添加pull的jar文件,android系统本身就是通过pull解释器来处理xml文件

 android中已经集成了pull解释器,所以不用添加jar文件,如果在javaee中使用pull需要手动添加pull的jar文件。android系统本身就是通过pull解释器来处理xml文件。所以说明pull还是有一定的优越性。
1、main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ListView
android:id="@+id/lv"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>

</LinearLayout>

2、item.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

3、我将person.xml文件放到了android的assets文件夹下
<?xml version="1.0" encoding="UTF-8"?>
<persons>
<person id="23">
<name>jack</name>
<age>16</age>
</person>
<person id="24">
<name>tom</name>
<age>15</age>
</person>
</persons>
4、MainActivity.java
public class MainActivity extends Activity {

private PersonService ps = null;

private ListView lv;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

1 2  下一页

Tags:android 通过 pull

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接