课程
/移动开发
/Android
/Android猜歌游戏是这样炼成的
我在item_btn下面设置了已选择框的button的大小。。在holder.mViewButton下面也setheight和setwidth都没有效果。请老师告诉具体的方法。谢谢
2014-10-20
源自:Android猜歌游戏是这样炼成的
正在回答
initCurrentStageData()方法中:
LayoutParams parameters = new LayoutParams(width, width); for (int i = 0; i < mBtnSelectWords.size(); i++) { // 增加新的view mViewWordsContainer.addView(mBtnSelectWords.get(i).mViewButton, parameters); }
width值是你需要设定的宽度和高度
谢谢老师
举报
手把手教你完成一款猜歌类游戏,向你展示游戏实现的全部细节