尝试在按钮单击时更改主要活动背景颜色

时间:2013-06-10 04:01:34

标签: android android-layout

这是我的主要内容:

@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);
        }
    }); 
}

我尝试了以下方法,但都失败了:

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));
}

我搜索并找到了如何在How to set background color of Activity to white programmatically?中解决此问题的解决方案;发布的解决方案是:

  // 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);

当我尝试android.R.color.red时,eclipse告诉我它应该是我的例子中的形式。

我确实设法通过以下方式更改了按钮的背景:

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

所以,我非常有信心问题不在于:getResources().getColor(R.color.red)。我尝试了很多不同的方式,而且我没有得到任何结果。作为参考,这是我的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> 

任何帮助将不胜感激。提前谢谢。

4 个答案:

答案 0 :(得分: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);
        }
    }); 
}

答案 1 :(得分:0)

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

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

尝试一下,也许它会对你有用。

答案 2 :(得分:0)

想出来:

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

显然,当您处理主getRootView()时,使用View并不好。我不知道,但这很有效。

答案 3 :(得分:0)

@Steve 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);
}