Add a proper Hello World message.

This commit is contained in:
bspeice 2013-09-30 14:39:15 -04:00
parent 55ffc9c752
commit d37d705867
5 changed files with 9 additions and 7 deletions

View File

@ -14,7 +14,7 @@
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/AppTheme" > android:theme="@style/AppTheme" >
<activity <activity
android:name="com.uncc.gameday.Alerts" android:name="com.uncc.gameday.activities.Alerts"
android:label="@string/app_name" > android:label="@string/app_name" >
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />

View File

@ -14,7 +14,7 @@
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/AppTheme" > android:theme="@style/AppTheme" >
<activity <activity
android:name="com.uncc.gameday.Alerts" android:name="com.uncc.gameday.activities.Alerts"
android:label="@string/app_name" > android:label="@string/app_name" >
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />

View File

@ -1,9 +1,9 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android" > <menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item <item
android:id="@+id/action_settings" android:id="@+id/action_alert_settings"
android:orderInCategory="100" android:orderInCategory="100"
android:showAsAction="never" android:showAsAction="never"
android:title="@string/action_settings"/> android:title="@string/action_alert_settings"/>
</menu> </menu>

View File

@ -2,7 +2,7 @@
<resources> <resources>
<string name="app_name">UNCCGameDay</string> <string name="app_name">UNCCGameDay</string>
<string name="action_settings">Settings</string> <string name="action_alert_settings">Alert Settings</string>
<string name="hello_world">Hello world!</string> <string name="hello_world">Welcome to UNCC GameDay!</string>
</resources> </resources>

View File

@ -1,4 +1,6 @@
package com.uncc.gameday; package com.uncc.gameday.activities;
import com.uncc.gameday.R;
import android.os.Bundle; import android.os.Bundle;
import android.app.Activity; import android.app.Activity;