Back to project page RateBeer-Mobile.
The source code is released under:
GNU General Public License
If you think the Android project RateBeer-Mobile listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright (c) 2009 Matthias Kppler */* w w w. j a v a 2 s. c o m*/ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.github.droidfu.activities; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import com.github.droidfu.DroidFuApplication; public class BetterDefaultActivity extends Activity implements BetterActivity { private boolean wasCreated, wasInterrupted; private Intent currentIntent; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); this.wasCreated = true; this.currentIntent = getIntent(); ((DroidFuApplication) getApplication()).setActiveContext(getClass().getCanonicalName(), this); } @Override protected void onDestroy() { super.onDestroy(); // ((DroidFuApplication) // getApplication()).resetActiveContext(getClass().getCanonicalName()); } @Override protected void onRestoreInstanceState(Bundle savedInstanceState) { super.onRestoreInstanceState(savedInstanceState); wasInterrupted = true; } @Override protected void onPause() { super.onPause(); wasCreated = wasInterrupted = false; } @Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); this.currentIntent = intent; } public int getWindowFeatures() { return BetterActivityHelper.getWindowFeatures(this); } public boolean isRestoring() { return wasInterrupted; } public boolean isResuming() { return !wasCreated; } public boolean isLaunching() { return !wasInterrupted && wasCreated; } public boolean isApplicationBroughtToBackground() { return BetterActivityHelper.isApplicationBroughtToBackground(this); } public Intent getCurrentIntent() { return currentIntent; } public boolean isLandscapeMode() { return getWindowManager().getDefaultDisplay().getOrientation() == 1; } public boolean isPortraitMode() { return !isLandscapeMode(); } }