前端之家收集整理的这篇文章主要介绍了
使用Pull解析器生成XML文件和读取xml文件,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
【背景】
有些时候,我们需要生成一个XML文件,生成XML文件的方法有很多,如:可以只使用一个StringBuilder组拼XML内容,然后把内容写入到文件中;或者使用DOM API生成XML文件,或者也可以使用pull解析器生成XML文件,这里推荐大家使用Pull解析器。
【Demo源码】
一、布局界面
- <RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
@H_502_52@ xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
@H_502_52@ android:layout_height="match_parent"
- android:paddingBottom="@dimen/activity_vertical_margin"
@H_502_52@ android:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
@H_502_52@ android:paddingTop="@dimen/activity_vertical_margin"
- tools:context=".MainActivity">
@H_502_52@
- <Button
@H_502_52@ android:id="@+id/btn_pull"
- android:layout_width="wrap_content"
@H_502_52@ android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
@H_502_52@ android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
@H_502_52@ android:layout_marginTop="110dp"
- android:text="@string/btn_pull"/>
@H_502_52@ android:id="@+id/btn_write"
- android:layout_alignLeft="@+id/btn_pull"
@H_502_52@ android:layout_alignRight="@+id/btn_pull"
- android:layout_below="@+id/btn_pull"
@H_502_52@ android:layout_marginTop="61dp"
- android:text="@string/btn_write"/>
@H_502_52@ </RelativeLayout>
@H_495_404@
二、写一个xml文件