Setting onClickListeners for buttons in scenes programmatically
问题 I have 2 layouts which contain the same buttons layout_1.xml <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content"> <Button android:id="@+id/button_1" android:text="button2" android:background="@android:color/black" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </RelativeLayout> and layout_2.xml <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content"> <Button android:id="@+id/button_1" android