我想投,ImageView
到RelativeLayout
。因爲RelativeLayout
是父視圖,並且在此有許多圖像作爲子視圖。所以我寫了代碼來下載圖像並將其設置爲圖像視圖。但在這裏,我想要將此下載的圖像設置爲RelativeLayout
的父視圖的背景。Android:有沒有什麼辦法可以將ImageView投射到RelativeLayout
RelativeLayout layout = (RelativeLayout) findViewById(R.id.bg_image);
ImageView bgImage=(ImageView) findViewById(R.id.bground_image);
downloader = new ImageDownloader();
downloader.download(item.imageurl(), bgImage);
///圖像現在在bgImage // 設置/////////現在在這裏,我想bgImage被設置爲佈局////
thankx的背景提前
是的,你是正確的,謝謝,請添加代碼片段,以獲得一個想法。 –
我的問題目前還不清楚。我想將下載的圖像設置爲'RelativeLayout'的背景圖像,而不是'ImageView'的背景圖像。 –
好吧,您正在向下載程序提供ImageView類型變量。然後確保它接受一個RelativeLayout,然後在你的下載器中執行邏輯。 –