我在下面的xml中遇到了上述错误。我的问题是什么?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/question"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:text="what is your name?"
android:textColor="@android:color/black" />
<RadioGroup
android:id="@+id/answer_group"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/question"
android:layout_marginLeft="20dp"
android:layout_marginTop="10dp" >
<RelativeLayout
android:id="@+id/radio_group_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/option1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="paru"
android:textColor="@android:color/black" />
<RadioButton
android:id="@+id/option2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@id/option1"
android:text="mani"
android:textColor="@android:color/black" />
<RadioButton
android:id="@+id/option3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/option1"
android:text="sankar"
android:textColor="@android:color/black" />
<RadioButton
android:id="@+id/option4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/option2"
android:layout_marginLeft="@id/option2"
android:layout_toRightOf="@id/option3"
android:text="venkat"
android:textColor="@android:color/black" />
</RelativeLayout>
</RadioGroup>
</RelativeLayout>
我的logcat显示:
java.lang.UnsupportedOperationException: Can't convert to dimension: type=0x12
at android.content.res.TypedArray.getDimensionPixelSize(TypedArray.java:463)
at android.view.ViewGroup$MarginLayoutParams.<init>(ViewGroup.java:5768)
答案 0 :(得分:4)
从android:layout_marginLeft="@+id/option2"
option4
移除RadioButton
。因为您无法将任何视图视为保证金。并且还会将对齐视图ID设为@+id
而不是{{1} }
尝试以下数据:
@id