Deleted scrollview and created listview instead

This commit is contained in:
RowenaWinston 2013-10-30 14:34:22 -04:00
parent 251a41eb67
commit 3f5fafb7a7

View File

@ -6,18 +6,15 @@ import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.widget.Button;
import android.widget.TableLayout;
import com.uncc.gameday.R;
import com.uncc.gameday.alerts.AlertService;
public class Home extends MenuActivity {
private TableLayout alertsScrollView;
Button clearAlertsButton;
Button getAlertsButton;
private final long alarmRate = 300000; // 5 Minutes
@ -25,16 +22,6 @@ public class Home extends MenuActivity {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
alertsScrollView = (TableLayout) findViewById(R.id.alertsScrollView);
clearAlertsButton = (Button) findViewById(R.id.clearAlertsButton);
getAlertsButton = (Button) findViewById(R.id.getAlertsButton);
clearAlertsButton.setOnClickListener(clearAlertsButtonListener);
getAlertsButton.setOnClickListener(getAlertsButtonListener);
updateAlertsList(null);
// Start up the AlarmManager to fetch alerts in the background