欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

android動態(tài)壁紙調用的簡單實例

 更新時間:2013年06月04日 10:28:04   作者:  
動態(tài)壁紙的實現(xiàn)其實就是在Activity中調用動態(tài)壁紙服務,通過綁定服務得到IWallpaperService,調用該接口中的attach函數實現(xiàn)壁紙的調用。

調用后動態(tài)壁紙其實是顯示在Activity的后面,而Activity則是透明顯示,這樣就可以看到下面的動態(tài)壁紙,如果Activity不是透明的則什么也看不到。

代碼中有用到兩個接口

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則說明當前不是動態(tài)壁紙

mWallpaperIntent = new Intent(WallpaperService.SERVICE_INTERFACE);

mWallpaperIntent.setClassName(mWallpaperInfo.getPackageName(), mWallpaperInfo.getServiceName());

綁定動態(tài)壁紙服務

復制代碼 代碼如下:

bindService(mIntent, this, Context.BIND_AUTO_CREATE);

IWallpaperService mService;//這里有一個adil接口

在連接監(jiān)聽中試著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);
                }
        }


在bindService的時候發(fā)現(xiàn)總是失敗,后來發(fā)現(xiàn)是權限問題,只有擁有系統(tǒng)權限的apk才可以使用WallpaperService.SERVICE_INTERFACE服務,所以問題就變成了怎么獲取系統(tǒng)權限。

相關文章

最新評論