【发布时间】:2013-06-05 16:28:10
【问题描述】:
这是我的主要内容:
@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>
任何帮助将不胜感激。提前致谢。
【问题讨论】:
-
你可以试试this回答。