效果:
main.xml
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
android:id="@+id/widget0"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<Gallery
android:id="@+id/gall"
android:layout_width="320px"
android:layout_height="429px"
android:layout_x="0px"
android:layout_y="2px"
>
</Gallery>
</AbsoluteLayout>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="wallpaper.test"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".WallpaperTest"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.SET_WALLPAPER"></uses-permission>
</manifest>
package wallpaper.test;
import java.io.IOException;
import java.io.InputStream;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.res.Resources;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Gallery;
import android.widget.SpinnerAdapter;
import android.widget.Toast;
public class WallpaperTest extends Activity {
protected static InputStream io;
private ImageAdapter myImage;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/** 载入main.xml文件 */
setContentView(R.layout.main);
/** 设置一组图片*/
Integer[] myImageIde={
R.drawable.pic01,
R.drawable.pic02,
R.drawable.pic03,
R.drawable.pic04,
R.drawable.pic05
};
myImage=new ImageAdapter(WallpaperTest.this,myImageIde);
/** 设置图为Gallery的显示方式*/
Gallery g=(Gallery)findViewById(R.id.gall);
g.setAdapter((SpinnerAdapter) myImage);
g.setOnItemClickListener(new Gallery.OnItemClickListener(){
/** 设置ITEM的点击事件*/
@Override
public void onItemClick(AdapterView<?> parent, View v, final int position,
long id) {
/**设置 消息框*/
new AlertDialog.Builder(WallpaperTest.this)
/** 设置消息框的标题*/
.setTitle(R.string.alert_title)
/** 设置标题框的图片*/
.setIcon(myImage.myImageIds[position])
/** 设置消息框体的文本*/
.setMessage(R.string.alert_message)
/** 设置点击确定按钮的事件*/
.setPositiveButton(R.string.alert_ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Resources resources=getBaseContext().getResources();
io=resources.openRawResource(myImage.myImageIds[position]);
try {
/** 更换桌面*/
setWallpaper(io);
/** 设置Toast的消息*/
Toast.makeText(WallpaperTest.this,getString(R.string.alert_isgllery), Toast.LENGTH_LONG).show();
} catch (Exception e) {
e.printStackTrace();
}
}
/** 设置点击取消按钮的事件*/
}).setNegativeButton(R.string.alert_cancle, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
/** 设置Toast的消息*/
Toast.makeText(WallpaperTest.this, getString(R.string.alert_no), Toast.LENGTH_LONG).show();
}
}).show();
}
});
}
@Override
public void setWallpaper(InputStream data) throws IOException {
super.setWallpaper(data);
}
}
package wallpaper.test;
import android.content.Context;
import android.content.res.TypedArray;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Gallery;
import android.widget.ImageView;
public class ImageAdapter extends BaseAdapter{
int mGalleryBackground;
private Context context;
protected Integer[] myImageIds;
public ImageAdapter(Context c,Integer[] aid){
context=c;
myImageIds=aid;
/** 设置背景图片*/
TypedArray a=c.obtainStyledAttributes(R.styleable.Gallery);
mGalleryBackground=a.getResourceId(R.styleable.Gallery_android_galleryItemBackground, 0);
a.recycle();
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return myImageIds.length;
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ImageView i =new ImageView(context);
/** 设置背景图片给ImageView*/
i.setImageResource(myImageIds[position]);
/**图片的高和宽*/
i.setScaleType(ImageView.ScaleType.FIT_XY);
/**设置Gallery的背景图*/
i.setBackgroundResource(mGalleryBackground);
return i;
}
}
- 大小: 14 KB
- 大小: 36.7 KB
- 大小: 15.4 KB
- 大小: 43.1 KB
分享到:
相关推荐
- **第三章:程序** - 这一章节主要介绍程序的基本结构、流程控制以及如何编写高效的程序。 - **第四章:资源** - 资源管理对于移动设备非常重要,包括字体、图片等资源的加载、存储和管理。 - **第五章:字串...
#### 第三章:程序 - 介绍如何在MTK平台上编写和管理程序,包括程序结构、编译和调试等方面的知识。 #### 第四章:资源 - 介绍MTK平台上的资源管理机制,包括如何加载、管理和使用不同的资源类型,如字体、图片等。...
##### 第三章:程序 - **程序结构**:简要介绍程序的组织结构,包括如何定义函数以及如何调用它们。 ##### 第四章:资源 - **资源管理**:介绍如何管理和加载程序所需的资源,如文本、图片等。 ##### 第五章:字串...
第3章 自动化服务实例集锦 109 实例042: 自动获取手机屏幕的分辨率 109 实例043: 自动获取手机电池的剩余电量 112 实例044: 来电时自动发送信息提醒 115 实例045: 获取手机存储卡的容量 119 实例046: 操作存储...
**第三十一章:使用偏好设置** - **SharedPreferences 类**:介绍 SharedPreferences 类的使用方法及其作用。 - **保存用户偏好**:演示如何使用 SharedPreferences 保存用户偏好设置。 **第三十二章:管理和访问...
##### 第3章:基于云服务的数据存储 - **云服务介绍**:解释云服务的概念及其在移动应用中的作用。 - **数据同步**:讨论如何将本地数据与云端数据进行同步处理。 - **示例实践**:提供具体的代码示例,展示如何利用...
#### 第三章:Excel 2003 课程培训 **第一节:Excel 基础** - **Excel 简介和工作界面**: Excel 是一款电子表格软件,主要用于数据管理和分析。 - **数据修改和自动填充**: 修改单元格中的数据,使用拖拽等方式...
- 第 3 章:分析模拟手机的系统架构,包括内核定制、文件系统构建等。 - 第 4 章:探讨通话功能的实现,包括信号处理和协议栈设计。 - 第 5 章:讲解多媒体功能的集成,包括音频和视频播放的软硬件配合。 - 第 6 章...
- **设置账户**(第3章): - **邮件账户**:添加多个邮箱账户,支持Exchange ActiveSync等企业级服务。 - **社交账号**:整合Facebook、Twitter等社交平台账号。 - **使用邮件**(第4章): - **收发邮件**:...
手机商城-手机商城系统-手机商城系统源码-手机商城管理系统-手机商城管理系统java代码-手机商城系统设计与实现-基于springboot的手机商城系统-基于Web的手机商城系统设计与...第3章 系统分析 5 3.1 可行性分析 5 3.1
手机商城-手机商城系统-手机商城系统源码-手机商城管理系统-手机商城管理系统java代码-手机商城系统设计与实现-基于springboot的手机商城系统-基于Web的手机商城系统设计与...第3章 系统分析 5 3.1 可行性分析 5 3.1
华强北商城二手手机-华强北商城二手手机系统-华强北商城二手手机系统源码-华强北商城二手手机管理系统-华强北商城二手手机管理系统java代码-华强北商城二手手机系统设计与实现-...第2章 相关技术介绍 3 2.1 MySQL数据库
- **背景介绍**:随着移动互联网的普及和技术的进步,第三方输入法作为重要的工具软件,在用户日常生活中扮演着越来越重要的角色。本报告旨在深入分析2021-2025年间中国第三方输入法行业的市场现状、发展趋势以及...