0

正如您在代码中看到的,我有一个带有按钮的父布局。我想换bg。每次单击按钮时随机父布局的颜色。但是我的父布局的 findViewById(R.layout.activity_main) 给出了 null 因为 setContentView(R.layout.activity_main) 设置为相同的布局。我不想创建另一个父布局并将此布局添加为其子布局,然后为父布局设置内容视图,然后为我的子布局添加 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>
4

1 回答 1

4

在父级相对布局中添加一个 id:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/activity_main"
    ...

    ...
</RelativeLayout>

然后改变

RelativeLayout rlayout = (RelativeLayout) this.findViewById(R.layout.activity_main);

RelativeLayout rlayout = (RelativeLayout) this.findViewById(R.id.activity_main);
于 2013-05-19T16:06:29.650 回答