remove unneeded intents

This commit is contained in:
eehouse 2010-02-01 05:45:24 +00:00
parent 0485b6d4e6
commit 38ed6c925b
3 changed files with 0 additions and 24 deletions

View file

@ -67,10 +67,6 @@
android:label="@string/title_game" android:label="@string/title_game"
android:screenOrientation="sensor" android:screenOrientation="sensor"
> >
<!-- Do I need an intent at all here? -->
<intent-filter android:label="@string/resolve_edit">
<action android:name="android.intent.action.EDIT" />
</intent-filter>
</activity> </activity>
<activity android:name="DictActivity" <activity android:name="DictActivity"
@ -78,9 +74,6 @@
android:label="@string/title_game" android:label="@string/title_game"
android:screenOrientation="sensor" android:screenOrientation="sensor"
> >
<intent-filter android:label="@string/resolve_edit">
<action android:name="android.intent.action.EDIT" />
</intent-filter>
</activity> </activity>
<activity android:name="BoardActivity" <activity android:name="BoardActivity"
@ -89,21 +82,6 @@
android:screenOrientation="sensor" android:screenOrientation="sensor"
android:configChanges="keyboardHidden|orientation" android:configChanges="keyboardHidden|orientation"
> >
<!-- This filter says that we can edit the data of a game, i.e. play -->
<intent-filter android:label="@string/play">
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/vnd.org.eehouse.android.xw4.game" />
</intent-filter>
<!-- This filter says that we can create a new note inside
of a directory of notes. -->
<!--intent-filter>
<action android:name="android.intent.action.INSERT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.google.note" />
</intent-filter-->
</activity> </activity>
<activity android:name="BlockingActivity" <activity android:name="BlockingActivity"

View file

@ -274,7 +274,6 @@ public class BoardActivity extends Activity implements UtilCtxt {
break; break;
case R.id.board_menu_file_prefs: case R.id.board_menu_file_prefs:
Intent intent = new Intent( this, PrefsActivity.class ); Intent intent = new Intent( this, PrefsActivity.class );
intent.setAction( Intent.ACTION_EDIT );
startActivity( intent ); startActivity( intent );
break; break;
case R.id.board_menu_file_about: case R.id.board_menu_file_about:

View file

@ -441,7 +441,6 @@ public class GameConfig extends Activity implements View.OnClickListener {
private void launchDictBrowser() private void launchDictBrowser()
{ {
Intent intent = new Intent( this, DictActivity.class ); Intent intent = new Intent( this, DictActivity.class );
intent.setAction( Intent.ACTION_EDIT );
startActivity( intent ); startActivity( intent );
} }
} }