Questions tagged [multiple-views]

Used for instances of using multiple pages in a single UI control. i.e. - A NavigationView that can display different Content depending on which MenuItem is selected.

113 questions
0
votes
1 answer

How to convert camera pose (Translation matrix) obtained from the essential matrix to world coordinate system

I have extracted Rotation and Translation matrices from the essential matrix. The translation vector has a scale ambiguity. Therefore, I couldn't define its "true" values. My steps were as…
Yacine
  • 321
  • 2
  • 15
0
votes
1 answer

AngularJS Multiple views with shared logic design pattern

I'm using ui-router and my layout is divided into 2 ui-views, side-bar and main content the side-bar offers options that changes the main content model (altering values, setting filters) and that's a problem because as far as I understand they can…
OfirYaron
  • 157
  • 1
  • 9
0
votes
2 answers

Can't access element in the same view using AngularJS

so in general I want to build a single page application with AngularJS and I want my page to have different content for public and registered users, thus I put my navbar, content and footer part into different views. The structure looks like…
0
votes
0 answers

One app using TabLayout on small screen and normal Layout on big one

I've got an app made for tablets, where I'm using RelativeLayout. For smaller screens I'd made TabLayout where that RelativeLayout is splitted on 3 tabs. That 3 tabs are 3 separated xml files. My problem is connecting code to both layouts. On…
waclab1807
  • 71
  • 5
0
votes
2 answers

django - how to parse an uploaded file and send the result to a different form

I'm new to the django and in my first app, I would like to upload a csv file, with unknown number of rows, parse it's content and display the parsed data, than manipulate this data and save it in a table. What is the best approach for achieving this…
0
votes
1 answer

use of multiple fragments inside a fragment in android

I have a requirement in my application. my application has 6 fragments in a Navigation drawer each fragment represents single item in navigation drawer list. But in one of the fragment i need to implement a form which will be spread across 5 views…
nagendra
  • 161
  • 1
  • 1
  • 12
0
votes
1 answer

angular ui-router states with multiple views & controller instantiation

Ok, I have a reasonable amount of experience with angular and ui-router, but I'm running into an issue when it comes to the architecture of my app. I have some states like: main.module.js .state('main', { abstract: true, controller:…
Greg
  • 6,453
  • 9
  • 45
  • 61
0
votes
1 answer

Multiple UIViews, passing methods

I have two UIView contained in a UIViewController - firstView and secondView - that I initialize pragmatically. I have a UILabel in the firstView, and a UIButton in the secondView. I would like the button in the second view to change the label in…
Amendale
  • 317
  • 3
  • 19
0
votes
2 answers

Swapping with NSViewController

I am trying swapping two Views in a Windows. I am using Cocoa Framework (just for Mac) with Xcode 5.1.1 and NSViewController for get it. All compile perfectly but this doesn't works, I get the next message from compiler: "libdyld.dylib…
0
votes
1 answer

Multiple Views, Which is better UITableView, UIView or UICollectionView

Requirement: iPad application: Show custom controls in a list, controls are like "Select File", "Image Edit", "Video Edit", "Radio Group", "Checkbox", "Textbox with header", "Panel", "Tabs", "Signature". Right now i manage custom controls in a…
Kampai
  • 22,848
  • 21
  • 95
  • 95
0
votes
2 answers

Xcode Load NSUserDefaults in multiple viewcontrollers

I did a thorough research, but didn't seem to find the answer i'm looking for. Hope someone can help. I have multiple view controllers in my app, one of which is an 'options' view in which users can change certain settings like the background color…
Harold
  • 205
  • 2
  • 11
0
votes
0 answers

ContainerView should optionally decide whether to load a tableViewController or a normal ViewController

I am making an app using iOS 6 and storyboard and am stuck at the following point: I am loading a view which has a container view inside it. This view gets loaded(along with the container view) when a row of table view is selected. Now, I want the…
Roadblock
  • 2,041
  • 2
  • 24
  • 38
0
votes
1 answer

Estimation of camera displacement

I am currently working on a experiment that i took multiple photos of a scene on diferent days with a fixed camera position. The problem is that on real world it is hard to keep the camera perfectly fixed. What i need is to fix the small variance I…
0
votes
2 answers

Joining data from three views

I need to bring in data from 3 different views into my results. View A has almost all the data I need but it uses primary keys for two fields and I need to pull in the identifiers from the UI so it looks like this: View…
0
votes
1 answer

Data Binding in "single-page-multiple-views" web apps

There are a number of popular frameworks around to provide data binding between objects and views. This is a great idea; when the data changes, the view is updated automagically and vice versa. However, in mobile web apps, wrapped with Phonegap or…