Back to project page Android-Todo-Application.
The source code is released under:
MIT License
If you think the Android project Android-Todo-Application listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.samvandenberge.todo; /* w ww.j a v a2 s . co m*/ import com.readystatesoftware.systembartint.SystemBarTintManager; import com.samvandenberge.todo.R; import android.app.Activity; import android.graphics.Color; import android.os.Build; import android.os.Bundle; import android.widget.TextView; public class AboutActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getActionBar().setDisplayHomeAsUpEnabled(true); setContentView(R.layout.activity_about); final TextView intro = (TextView)findViewById(R.id.intro); intro.setText(getString(R.string.app_name) + " uses the following Open Source libraries:"); // statusBar tint if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { SystemBarTintManager tintManager = new SystemBarTintManager(this); tintManager.setStatusBarTintEnabled(true); int actionBarColor = Color.parseColor("#5d98db"); tintManager.setStatusBarTintColor(actionBarColor); } } }