有没有办法改变按钮后面的背景颜色 (button.setBackgroundResource)

Is there a way to change background color behind a button (button.setBackgroundResource)

我是一名新 Android 开发学生,我正在尝试创建一个动态布局 在同一行内包含一个 TextView 和一个按钮。

但我有个小问题。 我通过

在我的 Drawables 资源中设置了我的 Button
 button.setBackgroundResource(R.drawable.ic_comment_black_48px);

现在,我无法更改其背后的背景颜色。

我在主 LinearLayout 中创建了一个新的 Linearlayout,并创建了一个新的 textView 和一个新的 Button。 我已将它们放入 LinearLayout 的子项中并将其放入 main 中。 这是可行的,但不是我按钮后面的背景颜色。

有办法吗?

我的xml布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/grey"
    android:id="@+id/historyLayout">

</LinearLayout>

我的完整activity

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

        mLinearLayout = findViewById(R.id.historyLayout);

        mMoodSaved = new ArrayList(7); // Define the max size of my ArrayList
        loadData();
        for (int i = 1; i <= 7; i++) {
            final TextView textView = new TextView(this);
            mLinearLyt = new LinearLayout(this);
            LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
            mLinearLyt.setOrientation(LinearLayout.HORIZONTAL);
            textView.setHeight(300);
            textView.setWidth(400);
            textView.setBackgroundColor(Color.RED);
            textView.setTextColor(Color.BLACK);
            textView.setTextSize(12);
            textView.setText(String.valueOf(i));
            mLinearLyt.setBackgroundColor(Color.YELLOW);
            mLinearLyt.addView(textView);
            mLinearLyt.setLayoutParams(params);


            ImageButton button = new ImageButton(this);
            LinearLayout.LayoutParams param2 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT);
            param2.setMargins(20,50,0,0);
            param2.height = 100;
            param2.width = 100;
            button.setLayoutParams(param2);
            button.setBackgroundResource(R.drawable.ic_comment_black_48px);
            button.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    soundConfirm();
                    Toast.makeText(getApplicationContext(), textView.getText(), Toast.LENGTH_LONG).show(); //Display Toast Message
                }
            });
            mLinearLyt.addView(button);
            mLinearLayout.addView(mLinearLyt);
        }
    }

因为这是一个 ImageButton,设置

button.setImageResource(R.drawable.ic_comment_black_48px)

而不是 setBackgroundResource。