我在xml中添加一个视图,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:orientation="vertical">
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
现在,我想替换Button的viewParent,但是我如何知道LinearLayout何时在自定义按钮中添加Button子项呢?
当然,它必须在onCreate方法之前监听。