ボタンをクリックしたときに相互に変更したい2つのレイアウトがあります。これらは、次のようなフルスクリーンビューです。
<FrameLayout 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="#FF0000"
tools:context=".FullscreenActivity" >
クリックしたときにそれらを変更してほしい
<Button
android:id="@+id/green_button"
style="?buttonBarButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/green" />
src / com.example.layout / fullscreenactivity.java onClick()で何かを変更することになっていますか、それともこれが発生するようにどこで変更できますか?
よろしくお願いします