Hello,
I have an question.
When using confirmation dialogue, it has 3 option in behavior on back button , i.e. Ignore, return with true and return with false.
I have assigned some action in both the buttons. But sometimes I don't want to use any of them so I have selected behavior on back button as ignore. But now when I press the back button nothing happens and I have to press home button of my phone to get out of it. And when I clear recent task of my phone, it return with false and execute the action of the false button.
Please help that If I press the back button, the confirmation dialogue window should go and when I clear my recent apps nothing should happen.
http://automagic4android.com/flow.php?i ... c9b9e25987
Little problem with confirmation dialogue condition
Moderator: Martin
Re: Little problem with confirmation dialogue condition
Hello Act!
With the confirmation dialog you only have two options (yes and no).
Ignore is doing nothing - the condition is waiting.
Maybe this is the solution.
greeting
Peter
Sorry, very small!
Action:
Input Dialog
Title: Weather Info
Input Dalog Type: Single Choice Menu
List Values: Forecast 10 Days,Forecast Hourly
Default Value: nothing (or drink coffee ... - no matter -> Ends at the second condition as false)
1. Condition:
Expression
value == "Forecast 10 Days"
(true -> Action / false -> 2. Condition)
2. Condition:
Expression
value == "Forecast Hourly"
(true -> Action / no false)
With the confirmation dialog you only have two options (yes and no).
Ignore is doing nothing - the condition is waiting.
Maybe this is the solution.
greeting
Peter
Sorry, very small!

Action:
Input Dialog
Title: Weather Info
Input Dalog Type: Single Choice Menu
List Values: Forecast 10 Days,Forecast Hourly
Default Value: nothing (or drink coffee ... - no matter -> Ends at the second condition as false)
1. Condition:
Expression
value == "Forecast 10 Days"
(true -> Action / false -> 2. Condition)
2. Condition:
Expression
value == "Forecast Hourly"
(true -> Action / no false)
Re: Little problem with confirmation dialogue condition
Thanks friend for the help.