Questions tagged [dismiss]

For questions related to calling the "dismiss" method in a button click listener.

By calling this method in a button click listener, the user can close a dialog and continue using the application.

633 questions
0
votes
1 answer

UIAlertView turn off auto dismiss

when clicked button "ok" alert automatically closes, How to prevent it UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message" …
niskatqq
  • 65
  • 1
  • 8
0
votes
1 answer

Dismiss modal view controller issues

I want to present view controller modally with horizontal flip transition from view controller that already embedded in navigation controller and then when user press Done button modal view should be dismiss and presenting view controller should be…
0
votes
0 answers

iOS Keyboard remove iPhone iPad

Something is driving me nuts, may be somebody can help. I am currently testing something in a Universal app with a textField. I defined an action on my TextField (with didEndOnExit) - (IBAction)textFieldTouched:(UITextField *)sender…
Clararhea
  • 159
  • 1
  • 2
  • 13
0
votes
3 answers

iPhone - Dismiss modal view by a UITabBarController

I've got into a very strange problem. I created my own UITabBarController to customize it and it works pretty well... except for the modal views. When I dismiss the modal view (present/dismiss from the UITabBarController) with an animation, it waits…
Nate
  • 7,606
  • 23
  • 72
  • 124
0
votes
2 answers

iOS App navigation

My Application flow is as below where A, B , c and D are view controllers. Arrows mark presenting from and to view controllers. Now I need home button in B , C and D view controller that navigate back to A. I am not using storyboard. Its I am…
raheem52
  • 486
  • 1
  • 7
  • 18
0
votes
2 answers

How to review dismissed warning messages in Visual Studio 2012?

In Visual Studio 2012 t(particulary in Data Tools for SSAS) there's an option to Dismiss Warning messages from the Error Log. You can even add a comment before dismissing individual warning. Question: How can I review (and/or undo) warnings that…
0
votes
2 answers

Android DatePickerDialog wait for dismiss

Today imma trying to develop a simple app, which will ask the user to insert 2 dates by using the DatePickerDialog through a button, and then execute a query into a Database: Button.setOnClickListener(new OnClickListener(){ …
Vesco
  • 138
  • 2
  • 15
0
votes
1 answer

Retain DialogFragment after unlocking Screen

I have created one instance of DialogFragment. It is getting created properly. But when I lock screen, it is getting detach and dismiss. Thus when I unlock screen, I can't see my dialogfragment which I saw just 2 secs ago before lock screen. I want…
0
votes
2 answers

function executed after dismissing a view isn't working completly IOS

I'm working on an iphone application which requires a code to be inputed by the user. i have a first viewController which will call my passwordPrompt view controller when user touches a button with --> [self…
0
votes
1 answer

DialogFragment is dismissed right after show

I created a DialogFragment which should be shown after onActivityResult is called. But right after dialog.show() is called, the Dialog dismissed automatically for no reason. I am using the BarcodeScanner lib to scan a QR-Code, in onActivityResult I…
0
votes
0 answers

Application Crashes When Dismissing Modal View Controller

There's somewhere in my app that I dismiss ModalViewController and it causes app to crash with the following log : -[UINavigationController _computeAndApplyScrollContentInsetDeltaForViewController:]: message sent to deallocated instance…
Sepehrom
  • 1,335
  • 2
  • 16
  • 33
0
votes
1 answer

Dismiss AlertDialog with EditText only when it is filled

I have a EditText within a AlertDialog. I want to dismiss it only when the EditText has some input in it otherwise show a Toast prompting the user to enter the data. Currently, when the edit text has data the dialog dismissed properly. Also when the…
user3146095
  • 419
  • 2
  • 7
  • 25
0
votes
3 answers

How can i prevent an android dialog from dismiss when user press beside the dialog?

I have an Dialog (not an AlertDialog) which should only be dismissed when user press a button. But in my case, the dialog dismiss also when user press beside the dialog. How can i avoid that. Thnx for help!
dan
  • 873
  • 8
  • 11
0
votes
4 answers

Dismiss AlertDialog with EditText android

I have a AlertDialog which has a EditText. This EditText takes user input and on "Post" button click a API call is initiated. The problem is the AlertDialog should dismiss as soon as the "Post" button is clicked. Currently I have to click on outside…
user3713706
  • 1,243
  • 4
  • 15
  • 18
0
votes
2 answers

Android dismiss ProgressDialog after AlertDialog

I'm trying to send POST method to server after the user click on confirm button but after click and I get the responce the ProgressDialog still runing. paymentSubmitBtn =…
user3560669