Back to project page T-CEP-Alert.
The source code is released under:
MIT License
If you think the Android project T-CEP-Alert 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 org.ruscoe.tcepalert; // w ww .j a v a 2s .com import org.ruscoe.tcepalert.constants.Constants; import android.os.Bundle; /** * Extends AlertsActivity to display the latest available alerts to the user. * * @author Dan Ruscoe */ public class LatestAlertsActivity extends AlertsActivity { protected String mAlertsUrl = Constants.LATEST_ALERTS_URL; public void onCreate(Bundle savedInstanceState) { setContentView(R.layout.alerts); super.onCreate(savedInstanceState); } @Override public String getAlertsUrl() { return Constants.LATEST_ALERTS_URL; } }