Back to project page DivisionByZero.
The source code is released under:
Apache License
If you think the Android project DivisionByZero 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.ggstudios.divisionbyzero; // w ww.j a va2 s .com import android.os.Bundle; import android.widget.ImageView; public class ActivityAbout extends BaseActivity { private ImageView imgTitle; private ImageView imgBanner; @SuppressWarnings("deprecation") @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about); imgTitle = (ImageView) findViewById(R.id.imgTitle); imgBanner = (ImageView) findViewById(R.id.imgBanner); imgTitle.setAlpha((int)(ActivityMainMenu.ALPHA_TITLE * 255)); imgBanner.setAlpha((int)(ActivityMainMenu.ALPHA_BANNER * 255)); } }