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="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/option_rb"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/option_content_tv"
android:layout_width="200dip"
android:layout_height="wrap_content"
android:layout_marginLeft="10.0dip"
android:layout_marginTop="@id/option_rb"
android:layout_toRightOf="@id/option_rb"
/>
</RelativeLayout>
</LinearLayout>
报了这么一个错误……
然后弄了半天发现是因为 2.3不支持 :android:layout_marginTop="@id/option_rb"
如果把=右边的id类型 换成"10.0dip" 这种尺寸类型,他就没事了………………