我想在我的应用程序标题栏上设置一个渐变(从#F55B53
到#FFFF00
),使用以下代码:
GradientDrawable gd = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM, new int[] {0xF55B53,0xFFFF00});
View title = getWindow().findViewById(android.R.id.title);
View titleBar = (View) title.getParent();
titleBar.setBackgroundDrawable(gd);
但日食告诉我:
类型视图中的方法 setBackgroundDrawable(Drawable) 已弃用
我该做什么?