Questions tagged [quickaction]

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

93 questions
1
vote
3 answers

Is there something like a Quick Action for Holo-Themes?

For my application I need something like a Quick Action. There are plenty of useful libraries on github since this seems not to be a feature that is officially available via the Android SDK. But I just stumbled across something in the official gmail…
Taig
  • 6,718
  • 4
  • 44
  • 65
1
vote
3 answers

Android menu library: NewQuickAction3D didn't work

I'm try these two library to create a button menu in my android application NewQuickAction and NewQuickAction3D. The code to use them is the same! But if I use NewQuickAction it works correctly, instead if i change the external library in my project…
lory105
  • 6,112
  • 4
  • 31
  • 40
1
vote
0 answers

Can I put a layout inside a QuickAction?

The layout contains my google map represented by a variable viewmap. I want that in a QuickAction should contain a map. In such a way, when I click on a list of places or country it will pop up a map on top of the ListItem. For example: when I click…
1
vote
1 answer

Android: appropriate usage of Quick Actions

I have seen a fair number of apps use Quick Actions as an access point for key functions. Is there a "time and place" for it? When would you choose Quick Actions over a context menu and vice versa?
Anna Lam
  • 777
  • 2
  • 11
  • 28
1
vote
0 answers

include a list view in quick action

I am trying to create a Quick Action dialog for a button in which I want to include an image button and a list view. Code Snippet: lv=new ListView(this); ArrayAdapter myad=new ArrayAdapter(QuickActionActivity.this,…
Droid Diva
  • 81
  • 8
0
votes
2 answers

How to get listview itemid on a quickaction

I will use quickaction for a listview. I use this example for quickaction: http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/ But how I get the ID from my listviewitem to use it in setOnActionItemClickListener /…
0
votes
1 answer

Android QuickAction Notification View

I have created topbar like Facebook app now I'm stuck I want to create notification view (Pop Up) like Facebook I am using quickaction but its quite difficult to handle when orientation changes.
GTID
  • 538
  • 2
  • 6
  • 19
0
votes
1 answer

Android ScrollView QuickAction effect

I need some help, i want the android scrollview animation effect.... Basically when the someone click on the textview of linearlayout in scrollview another horizontal view should come in. Here is the pic....
Programmer
  • 5,360
  • 10
  • 37
  • 61
0
votes
0 answers

iOS - Override static home screen quick actions with dynamic actions

I have the following requirement. Before user lands on a certain screen I need to configure home screen quick actions say A,B and C for example. Once user lands on a specific screen (or performs a particular action within the app), I need to update…
Rakshith Nandish
  • 599
  • 3
  • 13
0
votes
1 answer

How can I customize the position of a QuickAction?

I have a clickable FrameLayout and I want to display a few quick actions on top of it after a long press. I can create a QuickAction to pop out of it like the old Twitter app, but I'm not sure how to display it like the current one.
adneal
  • 30,484
  • 10
  • 122
  • 151
0
votes
1 answer

Automator Quick Action Only Runs in Automator and not in Finder Quick Action Menu

I have an Automator Quick Action (QA) which calls a bash script to act on files within a specified folder. It works great when run inside Automator. But invoking the Quick Action from Finder by right clicking on the input folder does nothing with no…
Ardash M
  • 3
  • 3
0
votes
1 answer

How to print a specified text using Quick Actions

I am trying to make a quick action to be able to paste a specified text (like: 'print('Hello')') on anywhere I can type. So I want to (using my TouchBar) click on a button which will then print a text on (for example Notes). Is there a way to do…
Miles
  • 1,079
  • 1
  • 9
  • 17
0
votes
1 answer

MissingPluginException for quick_actions plugin in release mode

I recently added quick_actions plugin works fine in debug mode but shows a blank screen in release mode. Found these issues in the log. [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: MissingPluginException(No implementation found…
ASAD HAMEED
  • 2,296
  • 1
  • 20
  • 36
0
votes
0 answers

Why is viewController.navigationController returning nil when called from performActionFor in SceneDelegate?

I'm trying to create a quick action that will navigate to the 2nd view controller in my tab bar (vc1), then call a function which pushes another view controller (vc2) onto this one. Vc1 has a function called handleShowPopUp which contains the…
fisch
  • 136
  • 7
0
votes
1 answer

go directly to different page using quick Action shortcut in swift

my app has 2 pages(VCs) which are created and being controlled in a BossPageViewController and I want to give the user an option of going directly to second page using a Shortcut action. now I know how to create shortcuts and how to trigger them…