gpt4 book ai didi

java - Android 应用程序背景颜色按钮

转载 作者:行者123 更新时间:2023-11-30 03:44:47 24 4
gpt4 key购买 nike

您好,我还有一个关于我的 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);?

最佳答案

ma​​in_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>

Activity

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

}
});
}
}

关于java - Android 应用程序背景颜色按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15170640/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com