⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listing6-05_bugs.xml

📁 着几乎所有智能机厂商都将有自己配套的App Store,甚至并非智能手机制造商的三星也有意加入本次混战. 当然,我们也不能忘记苹果最先从iTunes中得到的灵感,从而带来了应用程序商店,一个正确
💻 XML
字号:
<bugs>
	<bug>
		<name>drawRgbOrigin</name>
		<description>
			The Graphics.drawRGB(..) method does not use a
			translated origin, but starts always at the top-left 0,0 origin.
		</description>
		<area>ui</area>
		<solution>
			Use the top-left 0,0 origin for devices with this bug:
			//#ifdef polish.Bugs.drawRgbOrigin
				x += g.getTranslateX();
				y += g.getTranslateY();
			//#endif
			g.drawRGB( rgbData, offset, scanlength, x, y, width, height, processAlpha);
		</solution>
	</bug>
	<bug>
		<name>ImageIOStreamAutoClose</name>
		<description>
			The Image.createImage( InputStream in ) should not close
			the given input stream according to the specification. Devices with this
			bug close the input stream.
		</description>
		<area>io</area>
		<solution>
			Move any image which should be loaded from an input stream to
			the last position in the corresponding stream.
		</solution>
	<bug>
</bugs>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -