panlili2024
2024-09-19 071a8328823a2861f93ce556a4da3e4119cab1a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.hdl.sdk.ttl_sdk.utlis;
 
 
import android.graphics.drawable.Drawable;
 
/**
 * Created by jlchen on 11/4/21.
 */
public class MyAppInfo {
    private Drawable image;
    private String appName;
 
    public MyAppInfo(Drawable image, String appName) {
        this.image = image;
        this.appName = appName;
    }
    public MyAppInfo() {
 
    }
 
    public Drawable getImage() {
        return image;
    }
 
    public void setImage(Drawable image) {
        this.image = image;
    }
 
    public String getAppName() {
        return appName;
    }
 
    public void setAppName(String appName) {
        this.appName = appName;
    }
}