首页 > 代码库 > StatusBarUtils工具类
StatusBarUtils工具类
import android.app.Activity; import android.app.Dialog; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Color; import android.os.Build; import android.view.View; import android.view.Window; import android.view.WindowManager; public class StatusBarUtils { public static void setWindowStatusBarColor(Activity activity, String color) { try { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { Window window = activity.getWindow(); window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); window.setStatusBarColor(Color.parseColor(color)); //底部导航栏 //window.setNavigationBarColor(activity.getResources().getColor(colorResId)); } } catch (Exception e) { e.printStackTrace(); } } public static void setWindowStatusBarColor(Dialog dialog, String color) { try { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { Window window = dialog.getWindow(); window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); window.setStatusBarColor(Color.parseColor(color)); //底部导航栏 //window.setNavigationBarColor(activity.getResources().getColor(colorResId)); } } catch (Exception e) { e.printStackTrace(); } } public static void RippleView(View view, Context context) { if(android.os.Build.VERSION.SDK_INT >= 21) { int[] attrsArray = { android.R.attr.selectableItemBackgroundBorderless }; //TypedArray typedArray = activity.obtainStyledAttributes(attrsArray); TypedArray typedArray = context.obtainStyledAttributes(attrsArray); int selector = typedArray.getResourceId(0, attrsArray[0]); view.setBackgroundResource(selector); // don‘t forget the resource recycling typedArray.recycle(); } else { int[] attrsArray = { android.R.attr.selectableItemBackground }; TypedArray typedArray = context.obtainStyledAttributes(attrsArray); //TypedArray typedArray = getActivity().obtainStyledAttributes(attrsArray); int selector = typedArray.getResourceId(0, attrsArray[0]); view.setBackgroundResource(selector); typedArray.recycle(); } } }
StatusBarUtils.setWindowStatusBarColor(this,"#D43B33"); //改变状态栏的颜色
StatusBarUtils工具类
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。