成年大片免费视频播放二级_早上躁晚上躁天天躁8090_新金瓶梅2下载_欧美国产一卡二在线播放_国产在线精品欧美日韩电影

您的位置:首頁技術文章
文章詳情頁

android-studio - Android 動態(tài)壁紙LayoutParams問題

【字號: 日期:2024-09-11 18:38:03瀏覽:83作者:豬豬

問題描述

最近在做一個動態(tài)壁紙項目,我在Engine的onCreate方法里,去添加兩只“蝴蝶”時,我使用了addView(imageview,new LayoutParams(width,height))方法,但是無論我怎么改變width和height,“蝴蝶”的大小都沒有發(fā)生變化。我在網(wǎng)上查了下,貌似方法的使用是沒有問題的,那么我應該怎么去調(diào)整imageview 的大?。?/p>

android-studio - Android 動態(tài)壁紙LayoutParams問題

這個是效果圖,下面是設置的代碼:

LinearLayout.LayoutParams ivBlueParams=new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT); ivBlueParams.gravity= Gravity.CENTER; LinearLayout.LayoutParams ivYellowParams=new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT); widgetGroup.addView(ivYellowButterfly,ivYellowParams); widgetGroup.addView(ivBlueButterfly,ivBlueParams);

問題解答

回答1:

你應該設置ivYellowButterfly與ivBlueButterfly的setLayoutParams()或者獲取ivYellowButterfly與ivYellowButterfly的LayoutParams進行設置。

相關文章: