您好,登錄后才能下訂單哦!
開源項目:https://github.com/etsy/AndroidStaggeredGrid
分享一下我用過之后,覺得最關(guān)鍵的地方。
在給出的demo中有一個集合,記錄每個位置的HeightRatio。設(shè)置Dyn/amicHeightTextView和DynamicHeightImageView的HeightRatio來控制顯示的高度。
比如在DynamicHeightImageView中有一段代碼來設(shè)置p_w_picpathview的顯示高度:
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
if (mHeightRatio > 0.0) {
// set the p_w_picpath views size
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = (int) (width * mHeightRatio);
setMeasuredDimension(width, height);
}
else {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
了解這幾點之后,就能夠顯示出高低不一樣的圖片效果
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。