次のコードを使用して、アプリケーションのタイトル バー (から#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) は非推奨です
どうすればいいですか?