设置基本Android应用程序的背景
作者:互联网
我目前正在使用eclipse作为我的IDE工作的基本应用程序.我目前无法将图像设置为背景.我跟踪了一个告诉我将我的图像放在drawable-mdpi文件夹中并将其命名为图标的tutoral.我试过这个,但它仍然放在andriod图标中,即使我删除了andriod图标图像.有没有更好的方法呢?
谢谢
解决方法:
试试这个:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="center_horizontal" android:background="@drawable/background"></LinearLayout>
background是一个.png文件.使用Nine9Patch用边框绘制它.
希望这可以帮助
标签:android,background-image,background 来源: https://codeday.me/bug/20190626/1296816.html