`

Drawable使用入门

阅读更多
一个让人赏心悦目的界面对软件来说非常重要,因此图形图像资源也显得非常重要。本讲就要谈一谈Android中处理图形图像的最重要的一个类Drawable。Drawable就是一个可以画的对象的抽象(有点别扭,你凑合看吧),下面是它的继承关系,可以看到BitmapDrawable,AnimationDrawable等对象都是它的子类。

[/url]

最简单的使用Drawable资源的方法是,把图片放入Android工程的res\drawable目录下,编程环境会自动在R类里为此资源创建一个引用。你可以使用此引用访问该资源对象。譬如对应用程序的图标,在Java代码中可以用R.drawable.icon引用到它,在XML中可以用@drawable/icon引用到它。

那么如果图片资源不在项目中而是在SDCard中时如何使用呢,我们看一下下面的例子学习一下Drawable的使用,并且顺便学习一下Bitmap和BitmapFactory的使用。

1、创建项目 Lesson23_Drawable,主Acitivity的名字是 MainDrawable.java,拷贝a.jpg和b.jpg两个文件到sdcard中

[url=http://android.yaohuiji.com/wp-content/uploads/2010/08/file_exlorper.jpg]

2、res\main.xml的内容如下:


01.<?xml version="1.0" encoding="utf-8"?>

02.<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">

03.<textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:textsize="20sp" android:text="Drawable的使用-设置壁纸">

04.<button android:layout_width="wrap_content" android:layout_height="wrap_content" android:textsize="20sp" android:text="查看图片A" android:id="@+id/Button01">

05.</button>

06.<button android:layout_width="wrap_content" android:layout_height="wrap_content" android:textsize="20sp" android:text="查看图片B" android:id="@+id/Button02">

07.</button>

08.<button android:layout_width="wrap_content" android:layout_height="wrap_content" android:textsize="20sp" android:text="设置图片A为壁纸" android:id="@+id/Button03">

09.</button>

10.<button android:layout_width="wrap_content" android:layout_height="wrap_content" android:textsize="20sp" android:text="设置图片B为壁纸" android:id="@+id/Button04">

11.</button>

12.<button android:layout_width="wrap_content" android:layout_height="wrap_content" android:textsize="20sp" android:text="恢复默认壁纸" android:id="@+id/Button05">

13.</button>

14.<imageview android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/ImageView01">

15.</imageview>

16.</textview></linearlayout>
复制代码3、MainDrawable.java的内容如下:


01.package android.basic.lesson23;

02.

03.import java.io.IOException;

04.

05.import android.app.Activity;

06.import android.graphics.BitmapFactory;

07.import android.graphics.drawable.Drawable;

08.import android.os.Bundle;

09.import android.view.View;

10.import android.view.View.OnClickListener;

11.import android.widget.Button;

12.import android.widget.ImageView;

13.

14.public class MainDrawable extends Activity {

15.        /** Called when the activity is first created. */

16.        @Override

17.        public void onCreate(Bundle savedInstanceState) {

18.                super.onCreate(savedInstanceState);

19.                setContentView(R.layout.main);

20.

21.                //定义UI组件

22.                Button b1 = (Button) findViewById(R.id.Button01);

23.                Button b2 = (Button) findViewById(R.id.Button02);

24.                Button b3 = (Button) findViewById(R.id.Button03);

25.                Button b4 = (Button) findViewById(R.id.Button04);

26.                Button b5 = (Button) findViewById(R.id.Button05);

27.                final ImageView iv= (ImageView)findViewById(R.id.ImageView01);

28.

29.                //定义按钮点击监听器

30.                OnClickListener ocl = new OnClickListener() {

31.

32.                        @Override

33.                        public void onClick(View v) {

34.

35.                                switch (v.getId()) {

36.                                case R.id.Button01:

37.                                        //给ImageView设置图片,从存储卡中获取图片为Drawable,然后把Drawable设置为ImageView的背景

38.                                        iv.setBackgroundDrawable(Drawable.createFromPath("/sdcard/a.jpg"));

39.                                        break;

40.                                case R.id.Button02:

41.                                        iv.setBackgroundDrawable(Drawable.createFromPath("/sdcard/b.jpg"));

42.                                        break;

43.                                case R.id.Button03:

44.                                        try {

45.                                                //Activity的父类ContextWrapper有这个setWallpaper方法,当然使用此方法需要有android.permission.SET_WALLPAPER权限

46.                                                setWallpaper(BitmapFactory.decodeFile("/sdcard/a.jpg"));

47.                                        } catch (IOException e1) {

48.                                                e1.printStackTrace();

49.                                        }

50.                                        break;

51.                                case R.id.Button04:

52.                                        try {

53.                                                setWallpaper(BitmapFactory.decodeFile("/sdcard/b.jpg"));

54.                                        } catch (IOException e1) {

55.                                                e1.printStackTrace();

56.                                        }

57.                                        break;

58.                                case R.id.Button05:

59.                                        try {

60.                                                //Activity的父类ContextWrapper有这个clearWallpaper方法,作用是恢复默认壁纸,当然使用此方法需要有android.permission.SET_WALLPAPER权限

61.                                                clearWallpaper();

62.                                        } catch (IOException e) {

63.                                                e.printStackTrace();

64.                                        }

65.                                        break;

66.                                }

67.

68.                        }

69.

70.                };

71.

72.                //给按钮们绑定点击监听器

73.                b1.setOnClickListener(ocl);

74.                b2.setOnClickListener(ocl);

75.                b3.setOnClickListener(ocl);

76.                b4.setOnClickListener(ocl);

77.                b5.setOnClickListener(ocl);

78.        }

79.

80.}
复制代码4、AndroidManifest.xml的内容如下(设置权限):


01.<?xml version="1.0" encoding="utf-8"?>

02.<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="android.basic.lesson23" android:versioncode="1" android:versionname="1.0">

03.    <application android:icon="@drawable/icon" android:label="@string/app_name">

04.        <activity android:label="@string/app_name" android:name=".MainDrawable">

05.            <intent -filter="">

06.                <action android:name="android.intent.action.MAIN">

07.                <category android:name="android.intent.category.LAUNCHER">

08.            </category></action></intent>

09.        </activity>

10.

11.    </application>

12.    <uses -sdk="" android:minsdkversion="8">

13.

14.<uses -permission="" android:name="android.permission.SET_WALLPAPER"></uses>

15.</uses></manifest> 
复制代码5、运行程序,查看结果:[/url]点击“查看图片A”按钮,ImageView载入图片A并显示出来[url=http://android.yaohuiji.com/wp-content/uploads/2010/08/image20.png]点击”设置图片B为壁纸”按钮,可以看到图片B已经成为桌面壁纸。 好了本讲就到这里。


 

分享到:
评论

相关推荐

    android drawable

    在Android开发中,`Drawable`是一个非常重要的概念,它代表了可以绘制到屏幕上的图形对象。...`e_16_1 HelloDrawable`很可能是项目中的一个入门示例,用于引导学习者逐步掌握`Drawable`的使用技巧。

    android一步一步最基础学习__新手

    #### 第二十三至第二十五讲:Drawable使用入门,Android动画入门 - **Drawable**: - 图形资源。 - 可以是图片、渐变色等。 - **Android动画**: - 包括补间动画和帧动画。 - 补间动画通过改变视图的属性来实现...

    Android 入门demo源码

    如`drawable`用于存放图像资源,`values`用于存放字符串、颜色等值资源。 8. **Android SDK**: 开发Android应用需要Android Software Development Kit,它提供了编译、构建、调试所需的工具和库。 9. **构建过程**...

    Android手机程序设计入门应用到精通源代码

    4. **单元059 使用 Drawable 对象**:Drawable是Android中用于绘制图形的接口,包括位图、形状等。这部分可能讲解了如何创建和使用自定义的Drawable,以及如何在布局中应用它们。 5. **单元065 Google地图进价控制*...

    jogl简介,jogl入门例子

    gl.glViewport(0, 0, drawable.getWidth(), drawable.getHeight()); } @Override public void display(GLAutoDrawable drawable) { GL2 gl = drawable.getGL().getGL2(); // 绘制代码,例如绘制红色立方体 ...

    ATL入门核心资料

    - 利用 DECLARE_DRAWABLE派生类,可以实现自绘控件。 6. ATL与OLEDB和OLEAutomation的集成: - ATL OLEDB Provider Wizard可以帮助创建数据提供程序,与数据库交互。 - ATL Server支持自动化接口,使ATL对象能够...

    逐帧动画入门

    本文将深入探讨“逐帧动画入门”这一主题,基于提供的标签和压缩文件名,我们可以推测这是关于Android平台上的一个学习资源,可能包含了一系列的源代码示例。 逐帧动画是一种常见的动画形式,它通过连续播放一系列...

    android 入门学习框架 贪吃蛇小游戏

    在Android入门学习中,贪吃蛇小游戏是一个经典的实践项目,它可以帮助初学者理解Android应用的基本架构、用户界面设计以及事件处理等核心概念。本框架旨在为Android新手提供一个清晰的学习路径,通过实现贪吃蛇游戏...

    一个Android的入门例子

    - `res`目录:包含了应用的各种资源,如布局文件(`layout`)、图片(`drawable`)、字符串(`values/strings.xml`)等。 3. **AndroidManifest.xml**: 这是Android应用的配置文件,声明了应用的基本信息(如应用名、...

    Android开发从入门到精通(随书光盘)【源码】第2章

    8. **图片资源处理**:了解如何在Android中加载和显示图片,包括从drawable资源中引用,以及使用ImageView控件。 9. **XML布局动态加载**:通过LayoutInflater将XML布局动态地加载到运行时的视图层次结构中,是实现...

    Android轻松入门实例

    6. **资源管理**:了解如何使用资源文件夹(如drawable、values等)来管理图片、字符串、颜色等资源。 7. **Android Studio工具**:掌握Android Studio的调试技巧,如使用Logcat查看日志,使用Layout Inspector检查...

    安卓学习入门工程

    这个【安卓学习入门工程】将引导你学习如何创建Activity,使用布局文件构建UI,处理用户事件,以及如何调用Android系统服务。同时,它也会让你了解到Android的生命周期管理、Intent机制、数据存储、网络通信等基础...

    android入门小游戏实例

    Android Studio允许你在res目录下组织各种资源,如drawable(图像)、raw(原始音频)和anim(动画)等。 9. **权限请求**: 如果游戏需要访问如网络、存储等特殊功能,需要在AndroidManifest.xml中声明相应权限,...

    android初学者入门开发经验

    5. res/drawable-hdpi、res/drawable-ldpi、res/drawable-mdpi:这三个文件夹用来存放不同分辨率的图片资源。 6. res/layout:存放XML布局文件,定义应用界面布局。 7. res/values:存放键值对的定义,如string.xml...

    android从入门到精通

    1. **资源文件**:了解Android资源目录结构,如drawable、values、layout等。 2. **字符串资源**:理解如何使用strings.xml进行国际化。 3. **图片资源**:学习使用Nine-Patch图,以及优化图片加载以提高性能。 ...

    Android新手入门2016(16)--画图

    在这个例子中,可能涉及了`TextView`的使用,`TextView`是Android中用于显示文本的组件,可以结合`Paint`来改变文本的显示效果。 为了实现动态画图,你需要重写`View`或`ViewGroup`的`onDraw()`方法。在该方法中,...

    Glide入门例子-LIstView浏览图片

    【Glide入门例子-LIstView浏览图片】 在Android应用开发中,展示大量图片时,我们经常需要使用ListView来高效地加载和滚动图片。Glide是一个强大的图片加载库,它优化了图片的加载过程,提供了平滑的滚动体验,同时...

    android从入门到精通sl(实例源程序)

    - 为了适应不同尺寸和分辨率的屏幕,可以使用资源限定符如`@drawable/ic_launcher`来指定不同的图片资源。 5. **常用控件介绍** - TextView:显示文本; - Button:按钮; - EditText:输入框; - ImageView:...

    Android初级入门——菜单Menu的简单使用

    在本文中,我们将深入探讨Android初级入门时如何简单地使用菜单Menu。 首先,菜单在Android中的主要用途是为用户提供应用程序的主要操作选项,这些选项通常在屏幕的顶部或者在动作栏(Action Bar)中显示。菜单可以...

Global site tag (gtag.js) - Google Analytics