1

Here's my main:

@Override
protected void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main_menu);

    Button btn = (Button) findViewById(R.id.newgame_button);

    btn.setOnClickListener(new View.OnClickListener() 
    {
        @Override
        public void onClick(View v) {
            changeBackground(v);
        }
    }); 
}

I've tried the follow methods, both of which have failed:

public void changeBackground(View v) 
{
      View someView = findViewById(R.id.main);
      View root = someView.getRootView();
      root.setBackgroundColor(getResources().getColor(R.color.red));
}

public void changeBackground(View v) 
{
      View root = v.getRootView();
      root.setBackgroundColor(getResources().getColor(R.color.red));
}

I searched and found the solution for how to solve this in How to set background color of Activity to white programmatically?; the solution posted was:

  // Now get a handle to any View contained 
  // within the main layout you are using
  View someView = findViewById(R.id.randomViewInMainLayout);

  // Find the root view
  View root = someView.getRootView()

  // Set the color
  root.setBackgroundColor(android.R.color.red);

When I try android.R.color.red, eclipse tells me that it should be in the form in my examples.

I did manage to change the background of my button with:

public void changeBackground(View v) 
{
    v.setBackgroundColor(getResources().getColor(R.color.red));
}

So, I'm pretty confident that the issue is not with: getResources().getColor(R.color.red). I've tried many different ways, and I'm not getting anywhere. For reference, here's my xml:

<?xml version="1.0" encoding="utf-8"?>
<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:orientation="vertical" 
    android:background="@color/LightCyan"
    android:id="@+id/main">

   <TextView
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:text="@string/welcome"
        android:gravity="center"
        android:layout_weight="3" />

   <LinearLayout
        android:layout_width="200dp"
        android:layout_height="0dip"
        android:orientation="vertical"
        android:layout_gravity="center"
        android:layout_weight="2" > 

       <Button
           android:id="@+id/resume_button"
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"
           android:text="@string/resume" 
           android:background="@color/Plum"/>

       <Button
           android:id="@+id/newgame_button"
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"
           android:text="@string/new_game"
           android:background="@color/Plum" 
           android:onClick="changeBackground"/>

    </LinearLayout>

</LinearLayout> 

Any help would be appreciated. Thanks in advance.

4

4 回答 4

2
@Override
protected void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main_menu);

    Button btn = (Button) findViewById(R.id.newgame_button);

    btn.setOnClickListener(new View.OnClickListener() 
    {
        @Override
        public void onClick(View v) {
            changeBackground(v);
        }
    }); 
}

将此更改为

   Activity activity;
@Override
protected void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main_menu);
    actvity = this;
    Button btn = (Button) findViewById(R.id.newgame_button);

    btn.setOnClickListener(new View.OnClickListener() 
    {
        @Override
        public void onClick(View v) {

           actvity.findViewById(android.R.id.content).setBackgroundColor(Color.BLACK);
        }
    }); 
}
于 2013-06-10T04:28:03.940 回答
0

弄清楚了:

public void changeBackground(View v) 
{
      View root = findViewById(R.id.main);
      root.setBackgroundColor(getResources().getColor(R.color.red));
}

显然,getRootView()在处理 main 时使用并不好View。我不知道,但这有效。

于 2013-06-10T04:25:26.680 回答
0

在我的应用程序中,我使用以下代码更改背景:

View view = this.getWindow().getDecorView();
view.setBackgroundColor(Color.BLACK);

试试看,也许它对你有用。

于 2013-06-10T04:05:17.780 回答
0

@史蒂夫·P。

改变这个

  public void changeBackground(View v)  {
    v.setBackgroundColor(getResources().getColor(R.color.red)); }

有了这个

 public void ChangeBackground(View v)
{
    View parentsView = (View) v.getParent();
    parentsView.setBackgroundColor(Color.RED);
}
于 2015-08-03T10:13:44.297 回答