安卓图像按钮

发布于 2024-11-07 09:07:54 字数 60 浏览 2 评论 0原文

我想问一下Android编程中图片按钮的使用,简单的按钮也可以用按钮添加图片。如何生成图片按钮的点击事件?

I would like to ask the use of image button in Android programming when simple button can also add the image with the button. How can we generate click event of image button?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

╭⌒浅淡时光〆 2024-11-14 09:07:54

转到您的活动的 xml 布局并将此...属性添加到特定的 ImageButton...

android:onClick="--在这里只需写下您在 .java 中的方法名称--"

快乐编码!

Go to your activity's xml layout and add this...attribute to specific ImageButton...

android:onClick="--In here just write method name which you have in your .java--"

Happy Coding!

入怼 2024-11-14 09:07:54

ImageButton继承自ImageView,与Button属性相比,有自己的属性。

您可以在这里查看属性,
http://developer.android.com/reference/android/widget/ImageButton.html

让你的activity实现OnClickListener,然后
在 OnCreate() 中或该事件之后。
使用 ,

ImageButton btn = new ImageButton(this); or 
//ImageButton btn = (ImageButton) findViewById(R.id.imgbtnid)
btn.setOnClickListener(this);

在 onClick() 函数中你可以处理点击事件

ImageButton inherits from ImageView and has its own properties compared to Button properties.

you can check properties here,
http://developer.android.com/reference/android/widget/ImageButton.html

Make your activity implement OnClickListener, then
in OnCreate() or after that event.
use ,

ImageButton btn = new ImageButton(this); or 
//ImageButton btn = (ImageButton) findViewById(R.id.imgbtnid)
btn.setOnClickListener(this);

in onClick() function you can handle the click event

故事↓在人 2024-11-14 09:07:54

这就是您获得点击事件的类型

ImageButton imgbtn=new ImageButton(this);
imgbtn.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
    }           
});

This as this type you get click event

ImageButton imgbtn=new ImageButton(this);
imgbtn.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
    }           
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文