View.GetChildAt を使用しているときにラッパー クラスを返そうとしていますが、IllegalCastException が発生しています。返そうとしている子が EditText であることはわかっています
MyEditText firstName = (MyEditText)infoLayout.GetChildAt(3);
注: この場合、FindByID は使用できません。
基本クラスを派生クラスに変換しようとすることに関係があると推測していますが、回避策があることを願っています。
ここに私のxmlレイアウトがあります
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/relativeLayout1">
<TextView
android:text="Type"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView1"
android:textSize="20dp"
android:layout_marginTop="30dp"
android:layout_marginLeft="10dp" />
<Spinner
android:layout_width="200dp"
android:layout_height="45dp"
android:layout_toRightOf="@id/textView1"
android:id="@+id/sp_type"
android:layout_alignBottom="@id/textView1"
android:layout_marginLeft="20dp" />
<TextView
android:text="First Name"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView2"
android:textSize="20dp"
android:layout_marginTop="20dp"
android:layout_below="@id/textView1"
android:layout_alignLeft="@id/textView1" />
<EditText
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/textView2"
android:id="@+id/et_firstName"
android:layout_alignBottom="@id/textView2"
android:layout_marginLeft="10dp" />
</RelativeLayout>