前端之家收集整理的这篇文章主要介绍了
XmlResourceParser类是怎么样解析XML文件的,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
android开发过程会经常使用XML文件,下面提供小实例,看看XmlResourceParser类是怎么样解析XML文件的。
XML文件名称为test.xml。内容如下:
- <?xmlversion="1.0"encoding="utf-8"?>
- <resources>
- customername="luopeng"age="21"gender="1"emial="dylankeepmoving@163.com"/>
- customername="dylan"age="22"gender="2"emial="710097663@qq.com"customername="android"age="6"gender="2"emial="android@gmail.com"</>
布局文件main.xml内容如下:
LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
TextView
android:id="@+id/textview01"
android:layout_height="wrap_content"
android:text="@string/hello"Button
android:id="@+id/btn01"
android:layout_width="wrap_content"
android:text="@string/btn01"
EditText
android:id="@+id/edittext01"
android:text="@string/eidttext01"
LinearLayout>