- 浏览: 48857 次
- 性别:
- 来自: 深圳
最新评论
/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.example.android.apis.graphics; //Need the following import to get access to the app resources, since this //class is in a sub-package. import com.example.android.apis.R; import android.app.Activity; import android.os.Bundle; import android.graphics.BitmapFactory; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import android.widget.LinearLayout; import android.widget.TextView; import android.widget.ScrollView; import android.view.LayoutInflater; import android.view.View; import android.content.Context; import android.util.DisplayMetrics; import android.util.Log; /** * This activity demonstrates various ways density can cause the scaling of * bitmaps and drawables. */ public class DensityActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); final LayoutInflater li = (LayoutInflater)getSystemService( LAYOUT_INFLATER_SERVICE);//获取布局泵 this.setTitle(R.string.density_title); LinearLayout root = new LinearLayout(this); root.setOrientation(LinearLayout.VERTICAL); LinearLayout layout = new LinearLayout(this); addBitmapDrawable(layout, R.drawable.logo120dpi, true); addBitmapDrawable(layout, R.drawable.logo160dpi, true); addBitmapDrawable(layout, R.drawable.logo240dpi, true); addLabelToRoot(root, "Prescaled bitmap in drawable"); addChildToRoot(root, layout); layout = new LinearLayout(this); addBitmapDrawable(layout, R.drawable.logo120dpi, false); addBitmapDrawable(layout, R.drawable.logo160dpi, false); addBitmapDrawable(layout, R.drawable.logo240dpi, false); addLabelToRoot(root, "Autoscaled bitmap in drawable"); addChildToRoot(root, layout); layout = new LinearLayout(this); addResourceDrawable(layout, R.drawable.logo120dpi); addResourceDrawable(layout, R.drawable.logo160dpi); addResourceDrawable(layout, R.drawable.logo240dpi); addLabelToRoot(root, "Prescaled resource drawable"); addChildToRoot(root, layout); layout = (LinearLayout)li.inflate(R.layout.density_image_views, null);//从XML文件读取布局 addLabelToRoot(root, "Inflated layout"); addChildToRoot(root, layout); layout = (LinearLayout)li.inflate(R.layout.density_styled_image_views, null);//从XML文件读取布局,属性通过style同意设置 addLabelToRoot(root, "Inflated styled layout"); addChildToRoot(root, layout); /* * Android系统根据当前设备屏幕配置不进行缩放选取设备配置相关的资源 * drawable 文件夹不带任何后缀,为缺省drawable 资源, * drawable-hdpi 为高密度屏幕使用的drawable资源drawable-hdpi 为低密度屏幕使用的drawable-ldpi 资源等。 * 同样values 定义了多种不同配置下使用的资源。 * 对应不同屏幕密度下的Bitmap资源定义(.png. .jpg, .gif ,.9.png) * 一个原则上使用 3:4:6:8的比例来为四种不同屏幕密度提供图像资源, * 比如对于一个“中等密度”下像素大小为48X48的资源, * Low-density: 36X36 * Medium-density: 48X48 * High-density: 72X72 * Extra high-density: 96X96 * 系统会根据当前屏幕密度从对应的文件夹里提取资源文件,当资源缺失则,会从其他文件夹读取,顺序如下 * 优先默认文件夹drawable,没有资源则从最小密度的文件夹向上读取,读取的文件会根据文件夹对应密度自动按比值缩放。 * 比如当前屏幕密度为160,如果资源图片放在drawable-ldpi,图片会自动放大。如果放在drawable-hdpi会自动缩小。 * 本列有两种有两种方法禁止自动缩放: * 第一种是将图片放在drawable-nodpi文件目录, * 第二种是将opts.inScaled = false。 */ layout = new LinearLayout(this); addCanvasBitmap(layout, R.drawable.logo120dpi, true); addCanvasBitmap(layout, R.drawable.logo160dpi, true); addCanvasBitmap(layout, R.drawable.logo240dpi, true); addLabelToRoot(root, "Prescaled bitmap"); addChildToRoot(root, layout); layout = new LinearLayout(this); addCanvasBitmap(layout, R.drawable.logo120dpi, true); addCanvasBitmap(layout, R.drawable.logo160dpi, true); addCanvasBitmap(layout, R.drawable.logo240dpi, true); addLabelToRoot(root, "Autoscaled bitmap"); addChildToRoot(root, layout); layout = new LinearLayout(this); addResourceDrawable(layout, R.drawable.logonodpi120); addResourceDrawable(layout, R.drawable.logonodpi160); addResourceDrawable(layout, R.drawable.logonodpi240); addLabelToRoot(root, "No-dpi resource drawable"); addChildToRoot(root, layout); layout = new LinearLayout(this); addNinePatchResourceDrawable(layout, R.drawable.smlnpatch120dpi); addNinePatchResourceDrawable(layout, R.drawable.smlnpatch160dpi); addNinePatchResourceDrawable(layout, R.drawable.smlnpatch240dpi); addLabelToRoot(root, "Prescaled 9-patch resource drawable"); addChildToRoot(root, layout); setContentView(scrollWrap(root)); } private View scrollWrap(View view) { ScrollView scroller = new ScrollView(this); scroller.addView(view, new ScrollView.LayoutParams(ScrollView.LayoutParams.MATCH_PARENT, ScrollView.LayoutParams.MATCH_PARENT)); return scroller; } private void addLabelToRoot(LinearLayout root, String text) {//往Layout动态添加View TextView label = new TextView(this); label.setText(text); root.addView(label, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT)); } private void addChildToRoot(LinearLayout root, LinearLayout layout) {//往Layout动态添加Layout, root.addView(layout, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT)); } private void addBitmapDrawable(LinearLayout layout, int resource, boolean scale) {//以BitmapDrawable将图片设成背景 Bitmap bitmap; bitmap = loadAndPrintDpi(resource, scale); View view = new View(this); final BitmapDrawable d = new BitmapDrawable(getResources(), bitmap); if (!scale) d.setTargetDensity(getResources().getDisplayMetrics()); view.setBackgroundDrawable(d); view.setLayoutParams(new LinearLayout.LayoutParams(d.getIntrinsicWidth(), d.getIntrinsicHeight())); layout.addView(view); } private void addResourceDrawable(LinearLayout layout, int resource) {//以Drawable将图片设成背景 View view = new View(this); final Drawable d = getResources().getDrawable(resource); view.setBackgroundDrawable(d); view.setLayoutParams(new LinearLayout.LayoutParams(d.getIntrinsicWidth(), d.getIntrinsicHeight())); layout.addView(view); } private void addCanvasBitmap(LinearLayout layout, int resource, boolean scale) {//以BitmapDrawable将图片设成背景 Bitmap bitmap; bitmap = loadAndPrintDpi(resource, scale); ScaledBitmapView view = new ScaledBitmapView(this, bitmap); view.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT)); layout.addView(view); } private void addNinePatchResourceDrawable(LinearLayout layout, int resource) { View view = new View(this); final Drawable d = getResources().getDrawable(resource); view.setBackgroundDrawable(d); Log.i("foo", "9-patch #" + Integer.toHexString(resource)//以16进制转换成字符。 + " w=" + d.getIntrinsicWidth() + " h=" + d.getIntrinsicHeight()); view.setLayoutParams(new LinearLayout.LayoutParams( d.getIntrinsicWidth()*2, d.getIntrinsicHeight()*2)); layout.addView(view); } private Bitmap loadAndPrintDpi(int id, boolean scale) { Bitmap bitmap; if (scale) { bitmap = BitmapFactory.decodeResource(getResources(), id); } else { BitmapFactory.Options opts = new BitmapFactory.Options(); opts.inScaled = false;//不允许缩放。 bitmap = BitmapFactory.decodeResource(getResources(), id, opts); } return bitmap; } private class ScaledBitmapView extends View {//自定义View,重写onMeasure,使Bitmap按比例缩放 private Bitmap mBitmap; public ScaledBitmapView(Context context, Bitmap bitmap) { super(context); mBitmap = bitmap; } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); final DisplayMetrics metrics = getResources().getDisplayMetrics(); setMeasuredDimension(//设置显示宽高 mBitmap.getScaledWidth(metrics),//返回DisplayMetrics整除后的位图宽度值; mBitmap.getScaledHeight(metrics)); } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); canvas.drawBitmap(mBitmap, 0.0f, 0.0f, null); } } }
发表评论
-
图片处理
2012-11-28 02:48 0http://www.linuxidc.com/Linux/2 ... -
Api Demo - .graphics(24)>>Cube
2012-08-03 15:18 1224package com.example.android.api ... -
Api Demo - .graphics(24)>>TouchRotateActivity
2012-08-03 15:07 1108package com.example.android.api ... -
Api Demo - .graphics(23)>>CubeMapActivity
2012-07-31 16:31 1443package com.opengl.test; imp ... -
opengles 学习关键字
2012-07-24 09:35 669主动渲染、平面着色、透视投影、near、索引法、glLight ... -
Api Demo - .graphics(21)>>StaticTriangleRenderer
2012-07-23 17:51 1265package com.example.android.api ... -
Api Demo - .graphics(20)>>CompressedTextureActivity
2012-07-23 16:50 1386/* * Copyright (C) 2008 The A ... -
Api Demo - .graphics(19)
2012-07-20 22:45 750package com.example.android.api ... -
Api Demo - .graphics(18)
2012-07-20 10:32 838package com.example.android.api ... -
Api Demo - .graphics(17)
2012-07-19 11:43 955/* package com.example.andro ... -
Api Demo - .graphics(16)
2012-07-18 14:54 626package com.example.android.api ... -
Api Demo - .graphics(15)
2012-07-18 12:55 840package com.example.android.api ... -
Api Demo - .graphics(14)
2012-07-18 11:50 839package com.example.android.api ... -
Api Demo - .graphics(13)
2012-07-17 11:38 921//关键字 Paint,MaskFilte,Path,Xfer ... -
Api Demo - .graphics(12)
2012-07-17 10:44 676<?xml version="1.0" ... -
Api Demo - .graphics(11)
2012-07-17 09:53 803//关键字:Shader ,ShapeDrawable pa ... -
Api Demo - .graphics(9)
2012-07-16 11:26 771//关键字:颜色合成,JPEG,PNG图片解压,Bitmap压 ... -
Api Demo - .graphics(8)
2012-07-16 10:43 668//关键字:ColorMatrixColorFilter; ... -
Api Demo - .graphics(7)
2012-07-16 09:53 793// 关键字:Porter-Duff package c ... -
Api Demo - .graphics(6)
2012-07-16 08:57 789//关键字:截取画布 p ...
相关推荐
4. **WebGL技术**:对于大数据集的3D可视化,可能会用到WebGL,这是一个JavaScript API,允许在浏览器中进行硬件加速的三维图形渲染。 5. **响应式设计**:考虑到多设备访问,HTML的响应式设计确保数据展示在不同...
本示例"Win-API-cbutton.rar_DEMO"着重于讲解如何使用Win API自定义绘制一个按钮控件(CButton),这对于初学者了解Windows GUI编程是非常有价值的。 首先,自绘按钮(CButton)是指开发者通过重写Windows消息处理...
7. **Quartz 2D API**:这是Core Graphics的一部分,提供了一系列的函数用于2D绘图,如`CGContextClipToRect()`用于裁剪上下文,`CGContextDrawImage()`用于在裁剪后的区域内绘制图片。 8. **坐标系统转换**:在iOS...
但是,它基于已在生产应用程序中使用了10多年的代码。 因为它是从另一个代码库中重构出来的,所以在此过程中可能有些问题。 免责声明 没有官方支持。 使用风险自负。 支持平台 平台 支持的抽象 Xamarin.iOS Core...
通过这个DEMO,初学者可以了解到如何在实际项目中结合Windows API和C++编程技巧来实现复杂的视觉效果。在实践中不断调试和改进,可以加深对图形编程和动画原理的理解。如果你正在学习这一领域,这是一个很好的起点,...
1. **GDI (Graphics Device Interface)**:这是Windows API的一部分,提供了绘制图形、文本和图像的基本功能。在保存DIB时,开发者通常会用到GDI函数,例如`CreateDIBSection`用于创建DIB,`BitBlt`用于位图操作,...
Core Graphics是一个低级别的2D图形绘制系统,它提供了丰富的API,允许开发者直接绘制线条、形状和文本。在这个项目中,开发者可能会使用CGContext来创建一个圆形路径,并设置填充和描边颜色,然后通过定时器每隔...
SVG(Scalable Vector Graphics)是一种基于XML的矢量图形格式,它允许开发者在Web上创建和展示高质量的图形,这些图形可以无限缩放而不会失真。SVG-pan-zoom库是专为JavaScript设计的一个工具,用于实现SVG图像的平...
此外,考虑到数据的实时性,该Demo可能还使用了网络请求技术,如NSURLSession或Alamofire,来获取股票API提供的实时数据。这些数据可能以JSON格式返回,需要使用JSONSerialization或第三方库如SwiftyJSON进行解析。 ...
首先,Ogre(Object-Oriented Graphics Rendering Engine)是一款开源的3D渲染引擎,被广泛用于创建高质量的实时3D图形应用,如游戏、虚拟现实和科学可视化等。Ogre提供了丰富的图形功能,包括高级光照、纹理、着色...
`Android Graphics.Camera Demo`是一个展示如何使用`Camera`类进行图像捕获和显示的示例应用。这个Demo可以帮助开发者理解如何集成摄像头功能到自己的应用程序中,为用户提供拍照、录像等基本功能。 在Android系统...
"IOS应用源码Demo-电子书阅读器 - iPad PDF Reader-毕设学习.zip" 这个标题揭示了几个关键信息点。首先,这是一个基于iOS平台的应用程序源代码示例,主要功能是电子书阅读器,特别强调支持iPad上的PDF阅读。其次,这...
4. **Core Graphics框架**:可能涉及到Core Graphics库,它是iOS中用于绘制和操作图形的低级API,包括绘制贝塞尔曲线。 5. **物体动画**:学习如何使用Core Animation框架创建平滑的物体运动,结合贝塞尔曲线实现...
开发者需要重写drawRect:方法,利用Core Graphics API来绘制时间的马赛克效果。 4. **Core Graphics(CG)**: - Core Graphics是苹果提供的低级图形绘制库,用于进行2D图形渲染。在这个项目中,开发者可能使用...
2. **Core Graphics**:苹果的Core Graphics框架提供了低级别的图形绘制和处理能力,包括图像的旋转、缩放、裁剪等。在调整图片大小时,可能会用到`CGImage`和`CGContext`等核心图形接口。 3. **图像缩放算法**:在...
2. G:可能是图片或其他资源文件的目录,G通常代表Graphics,可能包含了示例图像或者用于测试的素材。 3. A:这个文件或目录的含义不明确,可能包含了辅助文件、配置文件,或者是一个单独的功能模块,具体用途需要...
5. Core Graphics绘图:熟悉CGContext的相关API,进行路径绘制、颜色填充、描边等操作。 6. 数据持久化:如果应用支持保存和加载画作,会涉及NSUserDefaults或CoreData等数据存储机制。 7. 错误处理和日志:了解如何...
iOS提供了内置的Core Graphics框架,其中包含CGPDFDocument和CGPDFPage等类,用于处理PDF文件。开发者需要熟悉这些API,以读取PDF元数据、获取页面数量、解码页面内容并将其绘制到屏幕上。此外,可能还会用到Core ...
3. **动画**:为了使进度条的变化更流畅,开发者可能会使用`UIView`的动画API,如`animateWithDuration:animations:`方法,或者使用`CADisplayLink`和`CAAnimation`来实现更复杂的动画效果。 4. **布局管理**:在...
描述中提到“前两年的IOS应用源码”,这暗示了源代码可能基于较旧的iOS SDK版本,因此在查阅和学习时,需要考虑它可能不包含最新的API或者编程实践。然而,对于初学者来说,这样的代码仍然可以作为了解基本iOS开发...