gpt4 book ai didi

android - 这段代码有什么问题?我正在尝试更改图像按钮的图像

转载 作者:行者123 更新时间:2023-11-29 01:58:57 26 4
gpt4 key购买 nike

public class AccountSetupActivity extends Activity implements OnClickListener {
ImageButton fbButton;

@Override
public void onClick(View v) {
Toast.makeText(this, "FB clicked", Toast.LENGTH_SHORT).show();
Drawable fbLight = getResources().getDrawable(R.drawable.fborange);
fbButton.setBackgroundDrawable(fbLight);
// fbButton.setBackgroundResource(0);
}

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.setupaccounts);
fbButton = (ImageButton) findViewById(R.id.fbButton);
fbButton.setOnClickListener(this);

}

}

最佳答案

尝试使用这一行来设置图像:

        fbButton.setImageDrawable(fbLight);

我认为您打算设置最前面的图像,但正在设置背景图像

关于android - 这段代码有什么问题?我正在尝试更改图像按钮的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13680877/

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