-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
//强迫症,看到
//设置背景推荐加入这个工具类
public static void setBackground(View view, Drawable drawable) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
//大于API-16
view.setBackground(drawable);
} else {
//小于API-16
view.setBackgroundDrawable(drawable);
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels