コードでわかるように、ボタンを持つ親レイアウトがあります。bgを変更したいです。ボタンがクリックされるたびにランダムに親レイアウトの色。しかし、親レイアウトの findViewById(R.layout.activity_main) は、 setContentView(R.layout.activity_main) が同じレイアウトに設定されているため、null を返します。別の親レイアウトを作成して、このレイアウトをその子として追加したくありません。次に、parentlayout に ContentView を設定し、子レイアウトを ffindViewById に設定します。
これはアクティビティ クラス コードです。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void button1Click(View view)
{
EditText edittext1;
Button button1;
button1 = (Button) view;
button1.setBackgroundColor(Color.GRAY);
edittext1 = (EditText) this.findViewById(R.id.editText1);
edittext1.setText("Welcome !");
RelativeLayout rlayout = (RelativeLayout) this.findViewById(R.layout.activity_main);
rlayout.setBackgroundColor(Color.rgb((int)Math.random()*10,(int)Math.random()*10,(int)Math.random()*10));
}
これはxmlです:
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:onClick="button1Click"
android:text="@string/button_click" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:ems="15"
android:inputType="text" >
<requestFocus />
</EditText>
</RelativeLayout>