只能使用PNG的图标与背景
把转化后的图片拖到工程中res中的drawable-hdpi中
图片放到drawable-hdpi文件夹上,文件夹会变颜色,然后松手后系统会提示你。点击OK
确定无误后,在main.xml中的LinearLayout下面,添加android:background="@drawable/d"如下图。d是添加进来的图片名字。 android:background="@drawable/mainactivity">
以上是添加背景,再说一下添加图标的不同之处,如下:
打开AndroidManifest.xml文件,添加代码:
<application
android:icon="@drawable/mainicon"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
提示Please ensure that adb is correctly located?