Skip to content

Commit

Permalink
Tab view and nice featured added
Browse files Browse the repository at this point in the history
git-svn-id: https://babbage.inf.unibz.it/teaching/2009-10/ait/group2/trunk@130 dc6aa11a-a73b-4401-8366-add7e515eabc
  • Loading branch information
Thomas Schievenin authored and Daniel Graziotin committed Feb 14, 2010
1 parent 196cc20 commit d8fce30
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
<activity android:name=".TodoTodaySheet"
android:label="@string/app_name">
</activity>
<activity android:name=".DeleteActivity"
android:label="@string/app_name">
</activity>
<activity android:name=".TracPromMenu"
android:label="@string/app_name">
</activity>
<activity android:name=".TabPreferences"
android:label="@string/app_name">
</activity>
<activity android:name=".TrashSheet" android:label="@string/app_name">
</activity>
<activity android:name=".Pomodoro"
Expand Down
4 changes: 2 additions & 2 deletions src/it/unibz/pomodroid/SharedMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ public static boolean onOptionsItemSelected(MenuItem item) {
SharedMenu.context.startActivity(i);
return true;
case PRE:
i = new Intent(SharedMenu.context, TracTicket.class);
i = new Intent(SharedMenu.context, TracPromMenu.class);
SharedMenu.context.startActivity(i);
return true;
case SET:
i = new Intent(SharedMenu.context, Preferences.class);
i = new Intent(SharedMenu.context, TabPreferences.class);
SharedMenu.context.startActivity(i);
return true;
}
Expand Down

0 comments on commit d8fce30

Please sign in to comment.