家资是何物,积帙列梁梠。这篇文章主要讲述Android使用TextView,设置onClick属性无效解决办法相关的知识,希望能为你提供帮助。
android在布局文件中为View提供了onClick属性,使用方法如下:
< TextView android:id=" @+id/user" android:layout_width=" @dimen/px_171" android:layout_height=" fill_parent" android:onClick=" iconClickListener" android:clickable=" true" /> < TextView android:id=" @+id/cinema" android:layout_width=" @dimen/px_220" android:layout_height=" fill_parent" android:layout_gravity=" right" android:onClick=" iconClickListener" android:clickable=" true" />
/** * 点击事件 * @param v */ public void iconClickListener(View v) { if(v.getId() == R.id.user){ }else if(v.getId() == R.id.cinema){ } }
【Android使用TextView,设置onClick属性无效解决办法】注意一下布局文件为TextView增加了clickable=true(TextView默认为false),这样就可以正常使用了。
推荐阅读
- Android界面编程--使用活动条(ActionBar)--实现Tab导航
- Android SDK Manager和AVD Manager使用(win7_64bit下测试)
- 直播APP开发(直播源码流媒体技术介绍!)
- APP产品开发需注意这些方面
- Android性能优化-过度绘制解决方案
- Android开发发布真机调试
- Invalid bound statement (not found): com.ros.dao.LogMapper.insert
- Android启动页面实现版本检查更新
- Android查缺补漏(线程篇)-- AsyncTask的使用及原理详细分析