尝试用LayerList来定义背景,定义如下:
<?xml version="1.0" encoding="utf-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<bitmap
android:src="@drawable/background_tile"
android:tileMode="repeat" />
</item>
<item>
<bitmap android:src="@drawable/background_cover" />
</item>
</layer-list>
其中background_cover所指向的resource为xml drawable,这将导致application crash,如果换成一般的image drawable则不会出现该问题。
得出结论应该是:<bitmap>的src不允许为xml drawables,原因可能是为了避免循环引用(待查)
相关的sites:
http://stackoverflow.com/questions/9788726/using-drawable-resources
http://stackoverflow.com/questions/10055892/preventing-shapes-scaling-in-a-layeredlist-without-using-bitmap
分享到:
相关推荐
<br>A DIB (Device Independent Bitmap) Section is a GDI object like a standard DIB but which additionally provides a pointer to the memory used to store the bitmap bits to which the creating ...
<br>A DIB (Device Independent Bitmap) Section is a GDI object like a standard DIB but which additionally provides a pointer to the memory used to store the bitmap bits to which the creating ...
1. 获取Bitmap: 1)在图片下载缓存好之后获取 Glide.with(mContext).load(url).asBitmap().into(new SimpleTarget<Bitmap>() { @Override public void onResourceReady(Bitmap resource, GlideAnimation<? ...
SmartFlash is a VCL with additional features in Macromedia Flash ActiveX.<br>SmartFlash support real trasparency of the flash and antialiasing effect in the flash frame.<br>Also you can load flash ...
HGE 1.8.1a Unicode Edition and Support Joystick<br><br>中文的使用方法:<br>1、现将现在的工程转换为UNICODE,否则会提示找不到hgeFont符号。<br>2、在用到的字符串处使用宏TXT()进行字符处理(hge中自带的),也可...
30.zip<br>Invert (mirror) a bitmap in-place<br>在内存中位图的对称位图(镜像)(8KB)<END><br>31,31.zip<br>A logo bitmap inside client frame<br>在客户区显示一个logo位图(7KB)<END><br>32,32.zip<br>Rotate a ...
1,01.zip<br>Toolbar - Custom status messages and tooltips<br>用户状态信息与工具提示(3KB)<END><br>2,02.zip<br>Remove system menu from floating toolbar<br>从浮动工具条中去除系统菜单(2KB)<END><br>3,03....
<br><br> ScannerManagerPro ActiveX控件的部分程序界面如下:<br><br> <img border="0" src=DownloadFilesimage_activeximagesscannermanager_s1.gif> <br><br>从扫描仪或网络摄象机获取图片 <img border="0" src=...
axcool.zip<br>A toolbar control someone wrote<END><br>84,axgrid.zip<br>A Grid control someone wrote<END><br>85,axpanel.zip<br>A Panel, 3D Fram, Progress meter control someone wrote.<END><br>86,browsef...
1,bmp_in.zip<br>在多文档客户区中增加位图底图演示程序(59KB)<END><br>2,bmp_in2.zip<br>在多文档客户区中增加位图底图(27KB)<END><br>3,bitmap_ocx.zip<br>一个自适应大小的位图控件(3KB)<END><br>4,bitmap_ocx2....
chap13-Using the Printer<br> chap14-Bitmaps and Bitbits<br> chap15-The Device-Independent Bitmap<br> chap16-The Palette Manager<br> chap17-Text and Fonts<br> chap18-Metafiles<br>Section 3:Advanced ...
在Android开发中,Activity之间的数据传递是常见的操作,特别是在处理图像数据时,如Bitmap对象。Bitmap是Android系统中用于表示图像的重要类,它包含了图像的所有像素信息。在不同Activity之间传递Bitmap,通常是...
<br><br> ImageViewer ActiveX控件的程序界面如下: (点击放大)<br><br> <img border="0" src=DownloadFilesimage_activeximagesimageviewer_activex_control_s1.jpg> <br> <br> 把图片加载到imageviewer<br><br> ...
为了帮助开发者更好地理解Android中的各种XML属性及其用途,本文将详细介绍部分核心XML元素及其属性,包括但不限于`<animated-rotate>`、`<animation-list>`、`<bitmap>`等。 #### `<animated-rotate>`: 动态旋转...
} }}template<class T>void LUBackSub(TMatrix<T>& A, std::vector<int>& Permutation, std::vector<T>& B) throw(NumericException){ int n = A.GetHeight(); T sum; int ii = 0; int ll; for(int i=0; i<n; i++) ...
关于shared pool的深入探讨<br>32bit oracle扩展SGA原理<br>32bit oracle中SGA_MAX_SIZE与单个进程PGA的制约关系<br>bitmap索引的一点探究<br>关于B*tree索引(index)的中度理解<br>本地管理表空间<br>倾力大奉献--...
public void onLoadFinished(Loader<List<Bitmap>> loader, List<Bitmap> data) { // 更新UI,将Bitmap列表绑定到ImageView或其他视图 } @Override public void onLoaderReset(Loader<List<Bitmap>> loader) {...
功能介绍:<br/> 为网页编程人员提供能够自动生成验证码图像并验证网页访问者输入的Web控件,具体功能如下:<br/>1. 提供简单易用的设计时所见即所得的可视化设置方式,并且支持设计时验证码图像效果与特效属性设置...
Maven坐标:org.roaringbitmap:RoaringBitmap:0.7.45; 标签:roaringbitmap、RoaringBitmap、中英对照文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 ...
1) 要及时回收Bitmap的内存 Bitmap类有一个方法recycle(),从方法名可以看出意思是回收。这里就有疑问了,Android系统有自己的垃圾回收机制,可以不定期的回收掉不使用的内存空间,当然也包括Bitmap的空间。那为什么...