Android开发学习之WallPaper设置壁纸详细介绍与实例

今天和大家分享的是关于在Android中设置壁纸的方法,在Android中设置壁纸的方法有三种,分别是:

1、使用WallpaperManager的setResource(int ResourceID)方法

2、使用WallpaperManager的setBitmap(Bitmap bitmap)方法

3、重写ContextWrapper 类中提供的setWallpaper()

除此之外,我们还需要在应用程序中加入下列权限: <uses-permission android:name="android.permission.SET_WALLPAPER"/>

下面我们以此为基本方法,来实现Android中自带的壁纸应用。首先来看我的布局代码:

复制代码 代码如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="#000000"
    tools:context=".MainActivity" >
    <ImageSwitcher
        android:id="@+id/ImageSwitcher"
        android:layout_width="fill_parent"
        android:layout_height="370dp">
    </ImageSwitcher>
    <Gallery
        android:id="@+id/Gallery"
        android:layout_width="fill_parent"
        android:layout_height="80dp"
        android:layout_below="@+id/ImageSwitcher"  />
    <Button
        android:id="@+id/BtnGo"
        android:layout_width="wrap_content"
        android:layout_height="40dp"
        android:layout_below="@+id/Gallery"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:text="@string/BtnGo" />
</RelativeLayout>

在这里我们使用Gallery来实现一个可以供用户选择的缩略图列表,当用户选择列表中的图像时,会在ImageSwitcher控件中显示出当前图像,当点击Button时,当前图片将被设置为壁纸。其实这里的ImageSwitcher完全可以替换为ImageView,考虑到ImageSwitcher可以提供较好的动画效果,所以我们在这里选择了ImageSwitcher。同样地,我们继续使用Android开发学习之Gallery中的那个ImageAdapter类:

复制代码 代码如下:
 package com.android.gallery2switcher;

import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;

public class ImageAdapter extends BaseAdapter{

//类成员myContext为context父类
 private Context myContext;
 private int[] myImages;

//构造函数,有两个参数,即要存储的Context和Images数组
 public ImageAdapter(Context c,int[] Images)
 {
  // TODO Auto-generated constructor stub
  this.myContext=c;
  this.myImages=Images;
 }

//返回所有的图片总数量
 @Override
 public int getCount()
 {

return this.myImages.length;
 }

//利用getItem方法,取得目前容器中图像的数组ID
 @Override
 public Object getItem(int position)
 {
  return position;
 }

@Override
 public long getItemId(int position)
 {
  return position;
 }

//取得目前欲显示的图像的VIEW,传入数组ID值使之读取与成像
 @Override
 public View getView(int position, View convertView, ViewGroup parent)
 {
  ImageView image=new ImageView(this.myContext);
  image.setImageResource(this.myImages[position]);
  image.setScaleType(ImageView.ScaleType.FIT_XY);
  image.setAdjustViewBounds(true);
  return image;
 }

}

现在,我们就可以开始编写程序了,后台的代码如下:
 复制代码 代码如下:
 package com.android.gallery2switcher;

import java.io.IOException;

import android.os.Bundle;
import android.app.Activity;
import android.app.WallpaperManager;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.view.animation.AnimationUtils;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.Button;
import android.widget.Gallery;
import android.widget.Gallery.LayoutParams;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.ViewSwitcher.ViewFactory;

public class MainActivity extends Activity {

Gallery mGallery;
 ImageSwitcher mSwitcher;
 Button BtnGo;
 int[] Resources=new int[]{R.drawable.image0,R.drawable.image1,R.drawable.image2,R.drawable.image3,
   R.drawable.image4,R.drawable.image5,R.drawable.image6,R.drawable.image7,R.drawable.image8};
 int index;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  //不显示标题栏
  requestWindowFeature(Window.FEATURE_NO_TITLE);
  setContentView(R.layout.activity_main);
  mGallery=(Gallery)findViewById(R.id.Gallery);
  mSwitcher=(ImageSwitcher)findViewById(R.id.ImageSwitcher);
  //实现ImageSwitcher的工厂接口
    mSwitcher.setFactory(new ViewFactory()
    {
     @Override
     public View makeView()
     {
        ImageView i = new ImageView(MainActivity.this);
        i.setBackgroundColor(0xFF000000);
        i.setScaleType(ImageView.ScaleType.FIT_CENTER);
        i.setLayoutParams(new ImageSwitcher.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
        return i;
     }
    });
     //设置资源
     mSwitcher.setImageResource(Resources[0]);
     //设置动画
     mSwitcher.setInAnimation(AnimationUtils.loadAnimation(this,android.R.anim.fade_in));
     mSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this,android.R.anim.fade_out));
  BtnGo=(Button)findViewById(R.id.BtnGo);
  BtnGo.setOnClickListener(new OnClickListener()
  {
   @Override
   public void onClick(View arg0)
   {
    SetWallPaper();
   }
  });
  ImageAdapter mAdapter=new ImageAdapter(this,Resources);
  mGallery.setAdapter(mAdapter);
  mGallery.setOnItemSelectedListener(new OnItemSelectedListener()
  {
   @Override
   public void onItemSelected(AdapterView<?> Adapter, View view,int position, long id)
   {
    //设置图片
    mSwitcher.setImageResource(Resources[position]);
    //获取当前图片索引
    index=position;
   }
   @Override
   public void onNothingSelected(AdapterView<?> arg0)
   {

}

});

}
 //设置壁纸
    public void SetWallPaper()
    {
     WallpaperManager mWallManager=WallpaperManager.getInstance(this);
     try
     {
   mWallManager.setResource(Resources[index]);
  }
     catch (IOException e)
     {
   e.printStackTrace();
  }
    }

@Override
 public boolean onCreateOptionsMenu(Menu menu)
 {
  return true;
 }

}

可以看到,在使用ImageSwitcher的时候,我们需要实现它的工厂接口,并且这里的makeView()方法和BaseAdapter里的getView()方法是一样的,即返回一个View视图。我们ImageSwitcher给使用了系统默认的动画效果。最终运行效果如下:

时间: 2024-09-20 10:36:13

Android开发学习之WallPaper设置壁纸详细介绍与实例的相关文章

Android开发学习之WallPaper设置壁纸详细介绍与实例_Android

今天和大家分享的是关于在Android中设置壁纸的方法,在Android中设置壁纸的方法有三种,分别是: 1.使用WallpaperManager的setResource(int ResourceID)方法 2.使用WallpaperManager的setBitmap(Bitmap bitmap)方法 3.重写ContextWrapper 类中提供的setWallpaper() 除此之外,我们还需要在应用程序中加入下列权限: <uses-permission android:name="a

友善之臂Mini6410之Android开发学习笔记(1)-LED Demo

友善之臂Mini6410之Android开发学习笔记源码同步更新,请使用git工具进行同步.关于Git工具更多信息,请参考:http://progit.org/book/zh/ git clone https://code.google.com/p/androiddemoformini6410/ LEDActivity.java package com.mini6410.LED; import com.friendlyarm.AndroidSDK.HardwareControler; impor

Android开发中的简单设置技巧集锦_Android

本文实例总结了Android开发中的简单设置技巧.分享给大家供大家参考,具体如下: 1开机图片: android-logo-mask.png android-logo-shine.png 这两个图片一个在上一个在下 ./out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates/classes/assets/images/android-logo-shine.png ./frameworks/base/core

Android开发中的简单设置技巧集锦

本文实例总结了Android开发中的简单设置技巧.分享给大家供大家参考,具体如下: 1开机图片: android-logo-mask.png android-logo-shine.png 这两个图片一个在上一个在下 ./out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates/classes/assets/images/android-logo-shine.png ./frameworks/base/core

android开发-在Android开发中打开网络设置出错,点击后直接退出而不是打开网络设置 怎么会事啊

问题描述 在Android开发中打开网络设置出错,点击后直接退出而不是打开网络设置 怎么会事啊 private void showSetNetworkDialog() { AlertDialog.Builder builder = new Builder(this); builder.setTitle("设置网络"); builder.setMessage("网络错误请检查网络链接"); builder.setPositiveButton("设置网络&qu

Android开发学习---使用Intelij idea 13.1 进行android 开发

原文:Android开发学习---使用Intelij idea 13.1 进行android 开发 1.为什么放弃eclipse?太卡!! 实在受不了eclipse的卡了,运行WEB项目还好,但android开发实在太慢,太慢!经常卡死,CPU经常被占满! 看网上很多人都说比Intelij idea好用,就试下,目前还在test阶段,总之是各种不习惯,很多快捷键之类的跟eclipse完全不一样.还要多熟悉! 另外android studio 也比较卡,而且用起来相当难受,完全是intelij 的

友善之臂Mini6410之Android开发学习笔记(4)-EEPROM Demo

友善之臂Mini6410之Android开发学习笔记源码同步更新,请使用git工具进行同步.关于Git工具更多信息,请参考:http://progit.org/book/zh/ git clone https://code.google.com/p/androiddemoformini6410/ EEPROMActivity.java package com.mini6410.EEPROM; import android.app.Activity; import android.os.Bundl

《Android Studio应用开发实战详解》——第1章,第1.5节Android开发学习路线图

1.5 Android开发学习路线图 Android系统是一个巨大的智能设备系统,从系统架构到最终的问世发布,并经过一步步的完善,整个过程无不体现了科技界巨头--谷歌公司工程师们的智慧结晶.作为一名Android开发初学者来说,刚接触时会有或多或少的迷茫.在本节的内容中,将引领读者一起探讨Android开发的学习之路. 1.5.1 Android开发的两大方向 1.应用程序开发方向 移动应用程序就是经常提到的APP程序,和1.3.5节中的内容相对应,通常使用Java语言实现.这是当前Androi

button形状-在android开发中,怎么设置我的ImageButton控件的形状

问题描述 在android开发中,怎么设置我的ImageButton控件的形状 我按照百度上教的,发现没什么效果,这是我控件的代码: android:id="@+id/button" android:layout_width="102dp" android:layout_height="133dp" android:background="@drawable/a" /> <ImageButton android:i