java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x12问题
今天寫程序,從一個(gè)Activity跳到另一個(gè)Activity,頁面加載時(shí)出現(xiàn)了以下錯(cuò)誤:
06-03 03:23:27.289: E/AndroidRuntime(9939): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.zuo.txt/com.zuo.txt.EditPage}: java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x12
絞盡腦汁,也沒想出哪里有問題,頁面代碼如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
??? android:layout_width="fill_parent"
??? android:layout_height="fill_parent"
??? android:orientation="vertical" >
??? <EditText
??????? android:id="@+id/editText1"
??????? android:layout_width="fill_parent"
??????? android:layout_height="wrap_content"
??????? android:hint="@string/title" />
??? <EditText
??????? android:id="@+id/editText2"
??????? android:layout_width="fill_parent"
??????? android:layout_height="wrap_content"
??????? android:hint="@string/content"
??????? android:inputType="textMultiLine" />
??? <LinearLayout
??????? xmlns:android="http://schemas.android.com/apk/res/android"
??????? android:layout_width="fill_parent"
??????? android:layout_height="fill_parent"
??????? android:orientation="horizontal" >
??????? <Button
??????????? android:id="@+id/save"
??????????? android:layout_width="wrap_content"
??????????? android:layout_height="wrap_content"
??????????? android:text="@string/save" />
??????? <Button
??????????? android:id="@+id/cancel"
??????????? android:layout_width="wrap_content"
??????????? android:layout_height="wrap_content"
??????????? android:layout_marginRight="@+id/save"
??????????? android:text="@string/cancel" />
??? </LinearLayout>
</LinearLayout>
?
看了一些資料,發(fā)現(xiàn)有可能是<LinearLayout>標(biāo)簽不能嵌套使用的問題,去掉里面那個(gè)LinearLayout,發(fā)現(xiàn)還是有問題,接著去掉了android:layout_marginRight="@+id/save",程序運(yùn)行正常,這問題蠻坑爹的,<android:layout_marginRight="@+id/save"
>居然不支持嵌套,我以前用android2.1版本的時(shí)候是可以的,現(xiàn)在改用2.3了,這個(gè)問題還有待深究。
接下來,我又加上那個(gè)LinearLayout,然后只去掉,<android:layout_marginRight="@+id/save">,發(fā)現(xiàn)也好了,由此證明LinearLayout是可以嵌套的,應(yīng)該是layout_marginRight這個(gè)屬性有問題導(dǎo)致的。
總結(jié)
以上是生活随笔為你收集整理的java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x12问题的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android apk签名方法
- 下一篇: java.io.IOException: