android 动态壁纸 例子,调用android动态壁纸的实例介绍
實際上動態墻紙的實現是在活動中調用動態墻紙服務,通過綁定服務獲取IwallPaper服務,并在接口中調用attach函數來實現墻紙調用,那么調用android動態壁紙的實例介紹大家都了解嗎?今天就讓愛站技術頻道小編帶你一起來了解一下吧!
代碼中有用到兩個接口
IWallpaperService mService;
IWallpaperEngine mEngine;
我們可以看到該目錄下面有三個aidl接口,分別是
復制代碼 代碼如下:
interface IWallpaperConnection {
void attachEngine(IWallpaperEngine engine);
ParcelFileDescriptor setWallpaper(String name);
}
oneway interface IWallpaperService {
void attach(IWallpaperConnection connection,
IBinder windowToken, int windowType, boolean isPreview,
int reqWidth, int reqHeight);
}
oneway interface IWallpaperEngine {
void setDesiredSize(int width, int height);
void setVisibility(boolean visible);
void dispatchPointer(in MotionEvent event);
void dispatchWallpaperCommand(String action, int x, int y, int z, in Bundle extras);
void destroy();
}
定義壁紙管理和壁紙信息變量
復制代碼 代碼如下:
private WallpaperManager mWallpaperManager = null;
private WallpaperInfo mWallpaperInfo = null;
private WallpaperConnection mWallpaperConnection = null;
private Intent mWallpaperIntent;
初始化這些變量
復制代碼 代碼如下:
mWallpaperManager = WallpaperManager.getInstance(this);
mWallpaperInfo = mWallpaperManager.getWallpaperInfo();//如果返回null則說明當前不是動態壁紙
mWallpaperIntent = new Intent(WallpaperService.SERVICE_INTERFACE);
mWallpaperIntent.setClassName(mWallpaperInfo.getPackageName(), mWallpaperInfo.getServiceName());
綁定動態壁紙服務
復制代碼 代碼如下:
bindService(mIntent, this, Context.BIND_AUTO_CREATE);
IWallpaperService mService;//這里有一個adil接口
在連接監聽中試著attach
復制代碼 代碼如下:
public void onServiceConnected(ComponentName name, IBinder service) {
mService = IWallpaperService.Stub.asInterface(service);
try {
mService.attach(this, view.getWindowToken(),
// WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY,
WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA,
true, root.getWidth(), root.getHeight());
} catch (RemoteException e) {
Log.w("", "Failed attaching wallpaper; clearing", e);
}
}
以上是調用android動態壁紙的實例介紹,更多內容盡在愛站技術頻道網!
總結
以上是生活随笔為你收集整理的android 动态壁纸 例子,调用android动态壁纸的实例介绍的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 数据字典表Truncate丢失将招致数
- 下一篇: 人人开源-遇到的坑