问题描述
- android xml问题 无法解析
-
我把android的我把xml做了修改 this.getLayoutInflater().inflate(R.layout.tool, null);无法提取到东西 是怎么回事的我在对原有系统的xml进行布局但是布局以后我发现系统没办法调用xml文件了但是没修改之前是可以的 这是什么问题
修改后的xml
<?xml version="1.0" encoding="utf-8"?>
android:id="@+id/tool11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:background="@drawable/tool11" >
android:layout_width="match_parent"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:orientation="horizontal" ><SeekBar android:id="@+id/seekBar1" android:layout_width="180dip" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_marginTop="28dip" android:max="30" > </SeekBar>
android:layout_width="match_parent"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:orientation="horizontal" ><imagebutton android:id="@+id/ImageButton01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/bg_fhzl1" /> <imagebutton android:id="@+id/ImageButton02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/bg_lsct1" /> <imagebutton android:id="@+id/ImageButton03" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/bg_sjzx1" /> </LinearLayout>
修改前的xml
<?xml version="1.0" encoding="utf-8"?>
android:id="@+id/tool11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:background="@drawable/tool11" ><SeekBar android:id="@+id/seekBar1" android:layout_width="180dip" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_marginTop="28dip" android:max="30" > </SeekBar>
toolpop1 = this.getLayoutInflater().inflate(R.layout.tool11, null);
toolpop1获取的是空的 然后系统就会退出去这是什么原因造成的 之前我打算新建一个xml但是也是获取不到xml布局文件
解决方案
换成 toolpop1 =LayoutInflater.from(context).inflate(R.layout.tool11, null);
解决方案二:
android解析xml中文乱码问题
Android XML解析器的问题
Android XML解析器的问题
解决方案三:
http://blog.csdn.net/liuhe688/article/details/6415593
解决方案四:
空了的话 建议:1.先Clean一下 。2. 然后检查命名这类的。 新人 凑个热闹。