gpt4 book ai didi

java - java中的可点击图像按钮,没有android中的xml

转载 作者:行者123 更新时间:2023-12-01 11:57:27 25 4
gpt4 key购买 nike

我想在java类中制作图像按钮而不使用XML(动态UI)。

我可以做到这一点,但我无法连接到 onClick void。

有人可以帮我吗?

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// setContentView(R.layout.main);
LayoutParams params =
new TableRow.LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT);

TableRow table = new TableRow(this);
table.setOrientation(TableRow.VERTICAL);


ImageButton ib = new ImageButton(this);
ib.setImageResource(R.drawable.one);
ib.setLayoutParams(params);
table.addView(ib);

TableRow.LayoutParams layoutParams=
new TableRow.LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT );
this.addContentView(table, layoutParams);

}
public void onClick(View v){

Toast.makeText(getBaseContext(),"This button clicked",Toast.LENGTH_SHORT).show();


}

最佳答案

您错过了ib.setOnClickListener(...);。如果您的 Activity 实现了 View.OnClickListener 那么它将是

ib.setOnClickListener(this);

关于java - java中的可点击图像按钮,没有android中的xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28325755/

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