Added couple of comments and executed eclipse's autoformat.

This commit is contained in:
Kevin Ruland 2012-01-11 14:54:00 +00:00
parent 46ee5f943e
commit 16334ca53a

View File

@ -12,23 +12,23 @@
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />
<application <application
android:name=".android.Application"
android:debuggable="true" android:debuggable="true"
android:icon="@drawable/or_launcher" android:icon="@drawable/or_launcher"
android:killAfterRestore="true" android:killAfterRestore="true"
android:label="@string/app_name" android:label="@string/app_name" >
android:name=".android.Application" >
<activity <activity
android:name=".android.Main" android:name=".android.Main"
android:theme="@android:style/Theme.Black.NoTitleBar" > android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter > <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity <activity
android:label="@string/app_name" android:name=".android.rocket.OpenRocketViewer"
android:name=".android.rocket.OpenRocketViewer" > android:label="@string/app_name" >
<!-- <!--
I don't understand why I need to have two different intent filters. I don't understand why I need to have two different intent filters.
@ -37,7 +37,8 @@
file browser to associate the correct launcher icon. the second intent-filter file browser to associate the correct launcher icon. the second intent-filter
is actually invoked when a file is selected. is actually invoked when a file is selected.
--> -->
<intent-filter > <!-- this intent filter convinces the file browser to display icons -->
<intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
@ -48,7 +49,8 @@
android:pathPattern=".*\\.ork" android:pathPattern=".*\\.ork"
android:scheme="file" /> android:scheme="file" />
</intent-filter> </intent-filter>
<intent-filter > <!-- this intent is sent when a file is selected in file browser -->
<intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
@ -60,19 +62,19 @@
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name=".android.PreferencesActivity" > <activity android:name=".android.PreferencesActivity" >
<intent-filter > <intent-filter>
<action android:name="net.sf.openrocket.android.PreferencesActivity" /> <action android:name="net.sf.openrocket.android.PreferencesActivity" />
<category android:name="android.intent.category.PREFERENCE" /> <category android:name="android.intent.category.PREFERENCE" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity <activity
android:label="@string/MotorListTitle" android:name=".android.motor.MotorHierarchicalBrowser"
android:name=".android.motor.MotorHierarchicalBrowser" /> android:label="@string/MotorListTitle" />
<activity android:name=".android.motor.MotorDetails" /> <activity android:name=".android.motor.MotorDetails" />
<activity <activity
android:label="@string/MotorListTitle" android:name=".android.thrustcurve.TCQueryActivity"
android:name=".android.thrustcurve.TCQueryActivity" /> android:label="@string/MotorListTitle" />
<activity android:name=".android.simulation.SimulationViewer" /> <activity android:name=".android.simulation.SimulationViewer" />
<activity android:name=".android.simulation.GraphicalActivity" /> <activity android:name=".android.simulation.GraphicalActivity" />
</application> </application>