使用github上的开源库SystemBarTint
实现简单的效果,大概3步就行了,
(1)添加该库或者直接将library中的那个类复制目录下
(2)在电一toolbar的xml文件中,给toolbar设置下面三个属性,height一定要设置为wrap_content,不然貌似不行的
android:layout_height="wrap_content" android:clipToPadding="true" android:fitsSystemWindows="true"
(2)创建activity时使用如下的initWindow
public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initWindow(); } @TargetApi(19) private void initWindow() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); SystemBarTintManager tintManager = new SystemBarTintManager(this); tintManager.setStatusBarTintColor(getResources().getColor(R.color.app_main_color)); tintManager.setStatusBarTintEnabled(true); } } }应用library里面的方法即可。
关于版本:必须在4.4(api19)以上的版本使用,4.4上测试有渐变效果,一些高的api貌似没有渐变效果。
另外:getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
是将状态栏变得半透明,也挺有用的