您的位置:首页 > 移动开发 > Android开发

android.widget.Button cannot be cast to android.widget.Gallery

2014-03-19 22:47 441 查看
        Gallery g = (Gallery)findViewById(R.id.secondButton);  因为这句运行报错,放鼠标在这上面时显示

@Deprecated

This class was deprecated in API level 16.

This widget is no longer supported. Other horizontally scrolling widgets include
HorizontalScrollView
and
ViewPager
from the support library.

删除Gallery g = (Gallery)findViewById(R.id.secondButton);就可以了   

用这种表示   secondButton = (Button)findViewById(R.id.secondButton);
求大神求解
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐