我有一个本地图像文件,我想用作Android应用程序背景,我该怎么做?
答案 0 :(得分:0)
例如 在main.xml中
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/nameOfYourLocalFile"
android:orientation="vertical" >
</LinearLayout>
只需将nameOfYourLocalFile.png
放到drawable
目录即可。
希望能帮到你。