当前位置: 代码迷 >> Android >> Button ImageView ImageButton问题
  详细解决方案

Button ImageView ImageButton问题

热度:245   发布时间:2016-05-01 14:49:04.0
Button ImageView ImageButton有关问题
本人刚接触到android,属于大菜霸级别人了,高手勿笑!

我觉得ImageView 控件都能实现ImageButton的一些功能,比如ImageView也有单击事件,谷歌干嘛要弄一个ImageView和ImageButton,求高手解答ImageView 不能实现的ImageButton的功能


还有Button能实现的功能而ImageButton不能实现的功能 举个例子就行  



------解决方案--------------------
Button 上可以随意设置Text文本,你ImageButton能行吗
------解决方案--------------------
ImageButton控件和Button控件基本相似,只是通过图像来表现外观,和Button控件的Click事件不同,ImageButton控件的Click事件是配合System.Web.UI.ImageClickEventHandler委托工作的。即ImageButton控件的Click事件处理方法中使用的事件参数类型为System.Web.UI.ImageClickEventArgs,两个参数X,Y可以获取用户单击的精确位置并做相应的处理。

比如如下代码:

protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
TextBox3.Text = Convert.ToString(e.X);
TextBox4.Text = Convert.ToString(e.Y);

}

就可以在Web窗体上的TextBox3,TextBox4处显示出你在图像上点击的坐标.


------解决方案--------------------
简单的说,虽然都能点击,button有点击的动态效果,而imgView就没有

------解决方案--------------------
哈哈~~~~~~~~~~~~~~~~~~~~~~~~~
  相关解决方案