Featured image of post Autojs 獲取 APP 圖示

Autojs 獲取 APP 圖示

Autojs 獲取任意圖示的程式碼:

Autojs 獲取任意圖示的程式碼:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
|  | importClass(java.io.File); |
| --- | --- |
|  | importClass(java.io.FileOutputStream); |
|  | importClass(android.graphics.Bitmap); |
|  | pm = context.getPackageManager(); |
|  | importClass(android.util.DisplayMetrics); |
|  | var name = rawInput("請輸入你想要獲取的應用圖示的應用名稱", "QQ"); |
|  | packageName = app.getPackageName(name); |
|  | appInfo = pm.getApplicationInfo(packageName, 0); |
|  | bmp = appInfo.loadIcon(pm).getBitmap(); |
|  | files.create("/sdcard/"+name+".jpg"); |
|  | f = new File("/sdcard/"+name+".jpg"); |
|  | fOut = new FileOutputStream(f); |
|  | bmp.compress(Bitmap.CompressFormat.JPEG, 100, fOut); |
|  | fOut.flush(); |
|  | fOut.close(); |
|  | app.viewFile("sdcard/"+name+".jpg"); |
Licensed under CC BY-NC-SA 4.0
使用 Hugo 建立
主題 StackJimmy 設計