Questions tagged [rootview]

In view based mobile application(iOS/Android) rootview provides interface between window and otherview.

148 questions
0
votes
2 answers

open rootViewController with button

I recently work on a tutorial for my app. I created the tutorial with this Tutorial: http://www.appcoda.com/uipageviewcontroller-tutorial-intro/ I created a "button" which brings the user back to the rootViewController, in this case the…
user3450607
  • 117
  • 1
  • 2
  • 7
0
votes
1 answer

Set SplitView Controller as root controller after Login IOS

Hi I am new to IOS development and developing IOS application in which I am using split view controller. My split view controller is not at root position.I am doing login first and then open split view controller. So what I did after user login…
nilkash
  • 7,408
  • 32
  • 99
  • 176
0
votes
1 answer

Auto segue when rootViewControl loads

I have a Navigation Controller in a storyboard set as the initial view. It calls one viewController, lets call it inititalViewCon. I want initialViewCon to modally segue to another viewController as soon as it loads. So it would open the app, go to…
user3451350
  • 61
  • 2
  • 8
0
votes
2 answers

Accessing Parent-View at many levels above

I have a linearlayout, which contains my TextView I want access. In this linearlayout there is a listview, where every item is a linearlayout and contains also custom views. Deep in there is a button with an onclickListener. After performing…
Ef Ge
  • 788
  • 1
  • 9
  • 26
0
votes
1 answer

iphone simulator only loading black screen

I'm currently trying to make a line management app in the form of a table view list in Xcode5. I am trying give the mutablearray that is a property of queue.h to queueviewcontroller which also has a mutable array property. The main reason for this…
snapfish
  • 175
  • 1
  • 14
0
votes
2 answers

remove all uiviewcontroller from hierarchy to display the first uiviewcontroller

When my App is starting I have a modal view controller to enter credentials (IP@, username, password...). When the user is logged he can open many UIViewControllers that can open others UIViewController and so on... These view controller can be…
sebastien
  • 2,489
  • 5
  • 26
  • 47
0
votes
1 answer

Android - Printscreen (Camera + views)

My application is using Camera and some components over the camera like buttons and a transparent layout for the user to draw. At this moment im able to see the camera and draw on a top layer (transparent). I can save the picture from camera by:…
Bugdr0id
  • 2,962
  • 6
  • 35
  • 59
0
votes
2 answers

Trouble setting FIrst view controller which will appear on App Startup using Storyboard

I'm setting setting FIrst view controller which will appear on my App Startup. It should appear an UIView first time as a tutorial and, from second time, another standard view. In AppDelegate I wrote this: #import "AppDelegate.h" #import…
Matte.Car
  • 2,007
  • 4
  • 23
  • 41
0
votes
2 answers

What is the difference in getting the root view?

What is the difference b/w these two: FrameLayout customView = (FrameLayout) view.getRootView(); FrameLayout customView = (FrameLayout) activity.getWindow().getDecorView();
VJohn
  • 493
  • 1
  • 14
  • 23
0
votes
1 answer

issue with performSegueWithIdentifier and rootViewController

im using this line of code to perform a segue [self.window.rootViewController performSegueWithIdentifier:@"viewMessage" sender:self]; but since i am calling rootViewController its attempting to look for the viewMessage idenifier in my…
NodeDad
  • 1,519
  • 2
  • 19
  • 48
0
votes
0 answers

ios view still there after loading new view

When I set a new rootViewController: self.appDelegate.contactsView = [[Contacts alloc] initWithNibName:@"Contacts" bundle:nil]; self.window.rootViewController = self.appDelegate.contactsView; [self.window makeKeyAndVisible]; I can still do stuff…
gdonald
  • 984
  • 2
  • 12
  • 23
0
votes
1 answer

how to remove rootview set in application delegate file from view controller

Hi I am working with rootViewController. i have task to set runtime rootviewController for createProfile view. and my project is fully navigation base. But when i get response from server i have to set CreateViewProfile AS RootViewController that i…
Hrushikesh Betai
  • 2,227
  • 5
  • 33
  • 63
0
votes
1 answer

IOS Switch between views

I have ios project with storyboard. There are 4 views in storyboard. The first view that come after navigation controller is "Login View". In all other views there is a Logout button. When you click the button I want the application show the Login…
Teymur Hacizade
  • 89
  • 1
  • 2
  • 12
0
votes
2 answers

Navigation issue

I want navigate to Rootview of 1st Tabbar item by clicking a button on fourth tabbar using this code just changes the Tabbar selection code snippets [self.parentViewController.tabBarController setSelectedIndex:0]; Previous action to be appear in…
0
votes
2 answers

How to get the parent view of a button within a list adapter?

i`m from brazil and I have a listview that contains buttons images and texts. I'm trying to click on the button listview and get the view responsible for the line I'm clicking. so I can make changes on the line where this my button. what is…
Alison
  • 3
  • 1
  • 1
  • 2
1 2 3
9
10