@override
public view getview(int position, view convertview, viewgroup parent) else
v.settext(mtitles[position]);
final drawable icon = micons.getdrawable(position);
icon.setbounds(0, 0, icon.getintrinsicwidth(), icon.getintrinsicheight());
v.settext(mtitles[position]);
v.setcompounddrawables(icon, null, null, null);
return convertview;
}
以上**片段是我在學習乙個demo的時候遇到了,其中action_list_item.xml中只包含乙個textview控制項,我糾結的問題是**的後半部份,即判斷完convertview是否為null之後的那部分,實際操作的是v這個控制項,v.set***什麼的,而convertview未作任何操作賦值,但為什麼最終return的是convertview?而且對於v的操作結果全部體現在了convertview中,這是為什麼?
求不吝賜教!
求助帖 關於psd檔案的
psd檔案是ps軟體匯出的一種檔案儲存格式,最近我看了關於psd檔案儲存的資訊,有一點疑問,不知道psd檔案中的組 資料夾,就是在圖層介面所看到的資料夾 具體在psd檔案中是儲存 一 file header 標頭檔案 二 color resources 色彩模式資料 三 image resource...
關於C 中get和set
在程式中經常碰到get set,不甚明白,在網上查詢時也說的迷迷糊糊,所以整理下,以學的明白透徹點。有兩個類person public class person public class person 第乙個型別的name屬性未封裝,其name屬性直接通過public關鍵字暴露給系統中的其他類了,而...
關於Hibernate中load與get的討論
路人甲 hibernate中有兩個極為相似的方法get 與load 他們都可以通過指定的實體類與id從資料庫中讀取資料,並返回對應的例項,但hibernate不會搞兩個完全一樣的方法的,它們間的不同在於 如果找不到符合條件的紀錄,get 方法將返回null 而load 將會報出objectnotfo...