0
我想在應用程序的背景中設置圖像? 如何設置?如何在背景顯示中設置圖像?
我想在應用程序的背景中設置圖像? 如何設置?如何在背景顯示中設置圖像?
將您的背景PNG放置在'drawable'資源文件夾中(我們假設它是我們的片段中的mybackground.png)。
如果使用XML佈局以下內容添加到您的頂層容器元素:
android:background="@drawable/mybackground"
例如:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
或者,如果你動態地構建你的觀點,那麼請採用以下活動onCreate方法:
view.setBackgroundDrawable(R.drawable.mybackground)
感謝您的幫助 其他問題:Ho w在代碼中爲textview設置透明度? –