| | |
| | | import android.graphics.Color; |
| | | import android.graphics.drawable.GradientDrawable; |
| | | |
| | | import com.tejia.lijin.app.util.SystemParamsUtil; |
| | | import com.wpc.library.util.common.DimenUtils; |
| | | import com.wpc.library.util.common.StringUtils; |
| | | |
| | | public class HomeUIUtil { |
| | | |
| | | |
| | | public static GradientDrawable getHomeTopBg(Context context) { |
| | | String color = SystemParamsUtil.getHomePageBgColors(context); |
| | | if (StringUtils.isNullOrEmpty(color)) { |
| | | color = "#FF227B,#FF2A3E"; |
| | | } |
| | | return getHomeTopBg(color.split(",")[0], color.split(",")[1]); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 首页顶部背景 |
| | | * |