1

你好,我有另一个关于我的 hello world 应用程序的问题,我想在按下 A 按钮时更改背景,所以我这样做了:

    public void onclick01(View View)  
       {  
           View.setBackgroundColor(Color.GREEN);

       } 

但这会改变按钮的背景颜色,而不是整个应用程序。


编辑

我还有两个问题。

1)我将如何设置

View.setBackgroundColor(Color.GREEN);

类似于:

View.setBackgroundColor(Color.RANDOM);

2)我将如何做同样的事情来改变文字颜色?就像是:

View.setTextColor(Color.GREEN);?
4

6 回答 6

1

main_act.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <Button
        android:id="@+id/b1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="button" />

</LinearLayout>

活动

public class MainActivity extends Activity {
/** Called when the activity is first created. */
Button b1;
LinearLayout layout;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main_act);
    layout=(LinearLayout)findViewById(R.id.layout);
    blueButton=(Button)findViewById(R.id.b1);
    b1.setOnClickListener(new OnClickListener() {

        public void onClick(View arg0) {
        // TODO Auto-generated method stub
        layout.setBackgroundColor(Color.BLUE);

    }
});
}
}
于 2013-03-02T04:21:57.883 回答
0

如果你想通过xml设置,那么你需要做如下:

   android:background="@android:color/green"

如果您决定使用 android 的默认颜色代码,或者您在 colors.xml 中指定了颜色,请使用

    android:background="@colors/green"

如果您想以编程方式进行操作,请执行以下操作:

     LinearLayout linearlayout=(LinearLayout) findViewById(R.layout.yourlayout);
     linearlayout.setBackgroundColor(Color.GREEN);
于 2013-03-02T04:20:40.113 回答
0

这里 View 引用您的 Button 的 View。所以你需要为父布局创建对象然后

layout.setBackgroundColor(Color.GREEN);
于 2013-03-02T04:21:52.330 回答
0
public void setActivityBackgroundColor(int color) {
 view = this.getWindow().getDecorView();
 view.setBackgroundColor(color);
}

然后从你的 OnClickListener 调用它,传入你想要的任何颜色。

于 2013-03-02T04:26:09.690 回答
0

对于这种情况,您应该使用 xml

<selector xmlns:android="http://schemas.android.com/apk/res/android" >

<item android:state_pressed="true">
    <shape android:shape="rectangle">
       <solid android:color="yourColor"/>
    </shape>
</item>

<item>
    <shape android:shape="rectangle">
        <solid android:color="yourColor"/>
    </shape>
</item>

</selector>
于 2013-03-02T04:28:41.747 回答
0

使用Selector您将获得按钮按下动作。

 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:drawable="@drawable/button_background" android:state_pressed="false"/>
 <!-- default -->
 <item android:drawable="@drawable/button_pressed" android:state_pressed="true"/>
 <!-- pressed -->
</selector>
于 2013-03-02T04:36:50.913 回答