Why EditText in a custom compound view is re-using the text entered in another compound view instance?
I'm trying to write a custom compound view composed by a TextView and an EditText , _compound_view.xml_: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/compoundText" android:layout_width="match_parent" android:layout_height="wrap_content" > <TextView android:id="@+id/textLabel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Label" /> <EditText android:id="@+id/textEdit" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="enter text here" > </EditText> and this is the class