brelto85 Active Member Licensed User Longtime User May 4, 2013 #1 How to add my app on the list of app when long press the home button? i've found the ACTION_SEARCH_LONG_PRESS action
How to add my app on the list of app when long press the home button? i've found the ACTION_SEARCH_LONG_PRESS action
Erel B4X founder Staff member Licensed User Longtime User May 5, 2013 #2 Which device are you using? On Android 2.x devices long pressing the home button shows the recent applications dialog. Upvote 0
Which device are you using? On Android 2.x devices long pressing the home button shows the recent applications dialog.
Erel B4X founder Staff member Licensed User Longtime User May 5, 2013 #4 Unless you are using a custom ROM (or maybe a custom luncher) only Google Now application can be accessed this way. Upvote 0
Unless you are using a custom ROM (or maybe a custom luncher) only Google Now application can be accessed this way.
brelto85 Active Member Licensed User Longtime User May 5, 2013 #5 I asked why another application, has added his own element when you hold down the home button. I haven't a custom rom and i have standard launcher so it should be possible like this Attachments 2013-05-05_17-01-49.png 69.7 KB · Views: 556 Upvote 0
I asked why another application, has added his own element when you hold down the home button. I haven't a custom rom and i have standard launcher so it should be possible like this
Erel B4X founder Staff member Licensed User Longtime User May 5, 2013 #6 Try adding an intent filter with this action: android.intent.action.SEARCH_LONG_PRESS Intent Filters - Intercepting SMS messages in the background Upvote 0
Try adding an intent filter with this action: android.intent.action.SEARCH_LONG_PRESS Intent Filters - Intercepting SMS messages in the background
brelto85 Active Member Licensed User Longtime User May 19, 2013 #7 Using this method, AddReceiverText(ServiceMain, <intent-filter> <action android:name="android.intent.action.SEARCH_LONG_PRESS" /> </intent-filter>) After long press home button, don't fired event Service_Start. Also, i would like to know if there's a method that allow to add my app in the list after long pressed home button (search action like image above) Upvote 0
Using this method, AddReceiverText(ServiceMain, <intent-filter> <action android:name="android.intent.action.SEARCH_LONG_PRESS" /> </intent-filter>) After long press home button, don't fired event Service_Start. Also, i would like to know if there's a method that allow to add my app in the list after long pressed home button (search action like image above)
Erel B4X founder Staff member Licensed User Longtime User May 20, 2013 #8 Where did you see that this action is sent in the case of a long press? Upvote 0
brelto85 Active Member Licensed User Longtime User May 30, 2013 #9 android - Replace Google Now gesture - Stack Overflow i want to add my application in that dialog... Upvote 0
Erel B4X founder Staff member Licensed User Longtime User May 31, 2013 #10 According to this link you should add: B4X: AddActivityText(main, <intent-filter> <action android:name="android.intent.action.ASSIST" /> <category android:name="android.intent.category.DEFAULT" > </category> </intent-filter>) Upvote 0
According to this link you should add: B4X: AddActivityText(main, <intent-filter> <action android:name="android.intent.action.ASSIST" /> <category android:name="android.intent.category.DEFAULT" > </category> </intent-filter>)