There are two activities in my app,they are declared like this : <activity android:name="Test1"> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER"/> </activity>
<activity android:name="Test2" android:theme="@android:style/Theme.Dialog"> <action android:name="android.intent.action.SEARCH_LONG_PRESS"/> <category android:name="android.intent.category.DEFAULT"/> </activity> the problem is:when I was in the activity Test1 and pressed the home key,then I took a long press of search key,activity Test2 didn't show,and activity Test1 was taken to the foreground,but I can see activity Test1 was started in logcat. I was really confused , anyone can help me?? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

