- Changed the way the ProgressDialog is dismissed from using some non-functional reflection code, to using a FragmentTransaction (which works) - Added code which shows the save button only when the CurrentRocket is modified. - Broke the save functionality into a Fragment with background Task so it is more reliable.
11 lines
327 B
XML
11 lines
327 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<item
|
|
android:id="@+id/menu_add"
|
|
android:icon="@drawable/ic_menu_add"
|
|
android:orderInCategory="2"
|
|
android:showAsAction="always"
|
|
android:title="@string/Add"/>
|
|
|
|
</menu> |