我想使用 lxml 来更改 android xml 文件的一些属性值。
例如:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:id="@+id/version_label"
android:layout_marginLeft="5sp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="version"/>
</LinearLayout>
我想改变“android:text”的值,但是
textViewTagNode.attrib['android:text'] = "new value"
不能工作,也不能
textViewTagNode.set('android:text', 'new value')
可以工作。我得到的只是“无效的属性名称 u'android:text'”
我知道这是命名空间问题,但我不知道如何解决。
非常感谢。