-1
在Android應用程序(Eclipse)中如何將圖像製作爲View的背景?我如何製作背景圖片?
在Android應用程序(Eclipse)中如何將圖像製作爲View的背景?我如何製作背景圖片?
編程方式,你可以添加背景使用一個觀點:
View view = yourView;
view.setBackgroundDrawable(yourDrawable);
//or with
view.setBackgroundResource(resid);
-我假設你想製作一個Activity
的圖片背景。
-設置android:background
屬性。
如:
android:background="@drawable/my_picture"
對於您的應用或月食?你是非特定的;)你是否也可以添加一些代碼來顯示你所做的事情 – Warpzit