Questions tagged [quickaction]

Quick Actions are triggered by using 3D Touch on the iOS app icon.

93 questions
3
votes
1 answer

3D touch quick actions preview view controller only one time

I have the following issue. When I run my app on my phone, 3d touch the icon and select the quick action it launches the app presenting the correct view controller but when I put the app in background and try to invoke the quick action it just opens…
martin petrov
  • 123
  • 3
  • 13
3
votes
1 answer

Overriding static UIApplicationShortcutItems

I am trying to set up quick actions for my app. I am able to create them either staticly or dynamically. We have on the fly language change and the quick actions should match the language set in the app. With dynamic quick actions that is easy. What…
Pahnev
  • 716
  • 5
  • 26
3
votes
1 answer

Get marker of the Map as View

I am using the Quick Action to display the set of items. When i click a button , Quick Action displays above the button. but i want to display the Quick Action above the marker in Map when i click on the button. Is it possible to get the Marker of…
saravanan
  • 5,339
  • 7
  • 45
  • 52
3
votes
1 answer

How to create a context menu on a ListView item in Android?

As i mentioned in photo , i dont know what is this widget? and how to create it and use it in our project?
Hossein Mansouri
  • 752
  • 1
  • 13
  • 29
3
votes
4 answers

Android: Create a Quick Action Menu

I need to create some type of quick action menu that appears to the right side of the clicked item (button) whenever the user clicks the button. Here's an example of what I'm trying to achieve: When the user clicks button1 I want the "sub quick…
Eric Bergman
  • 1,453
  • 11
  • 46
  • 84
2
votes
1 answer

Deep linking with react-native-quick-actions is not working in iOS

I am trying to implement quick actions in my react native app. lets say: There are 3 shortcut items. When long pressed in app icon, it will show these menus but when tapped those, it just opens app, but deep linking is not working. But whenever I…
Shu.T
  • 439
  • 1
  • 6
  • 12
2
votes
1 answer

Custom Quick Action on click on widget

I have a problem. The constructor of QuickAction qa = new QuickAction(v); require View v, but how I can recieve parent view in AppWidgetProvider? this I use for register click PendingIntent actionPendingIntent = PendingIntent.getBroadcast(context,…
Alex
  • 21
  • 2
2
votes
1 answer

Swift: How to access a certain TabBar tab from AppDelegate with Quick Actions?

I'm stting up quick actions for an app. It works fine. So in AppDelegate I am checking for the shortcutItem like this and call a completionHandler function: func application(_ application: UIApplication, performActionFor shortcutItem:…
RjC
  • 827
  • 2
  • 14
  • 33
2
votes
0 answers

VS Community 2015 Losing Focus when using Quick Action shortcut

I'm currently refactoring my codebase and changing some of the naming on my types and members. I use Quick Action for easily renaming all of the instances of the types or members, but if I use the shortcut for this (Ctrl + .) then I'll lose mouse…
Ashley
  • 121
  • 3
  • 14
2
votes
1 answer

Implementing QuickActions UI Pattern

I've been attempting to implement the QuickActions UI Pattern in my application. I've found several libraries that add QuickAction, but all of them have one thing in common - the QuickAction popup is always implemented inside an activity. As part…
CptJesus
  • 121
  • 6
2
votes
1 answer

QuickAction and a way to hide an item

I'm using the code from here to create a quickaction. I'm coding a game and I want to use quickaction function as menu. So, when the user click on "Pause" I want to remove or disable to click "Reset" button.. or if you have a better idea than mine,…
LikePod
  • 300
  • 1
  • 4
  • 17
1
vote
1 answer

Android QuickAction and SQLite DB Updates

I have implemented a QuickAction menu using the code and tutorial found here. I have a ListView that I populate with records from a SQLite DB and when a record is clicked the QuickAction menu is displayed. What I don't know how to do is take action…
CChandler81
  • 347
  • 3
  • 14
1
vote
0 answers

QuickAction in a Dialog

I´ve working with quickaction since i read in a thread (http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/) Everything was working ok, but i tried to use it in a dialog and it didn't work. Dialog with quickaction I think the…
shinjidev
  • 383
  • 1
  • 6
  • 21
1
vote
0 answers

how to put listview in quickaction in Android?

I am Developing news Application,in which i added quickaction menu for press button and here my problem is i want to disply listview within that quickaction,So any one could help me to create custom quick action
Jack Dsilva
  • 1,504
  • 3
  • 24
  • 44
1
vote
0 answers

How to call a view controller via Quick Actions (3D touch) Swift

I'm trying to implement a 3D touch command where if the user presses "New scan", then the view controller ProcessedImageViewController is called. I have already set up the Info.plist to create the quick option, but I am having trouble actually…
rice888
  • 51
  • 8