scrollview

Scrolling with Multiple ListViews for Android

I'm completely stumped on this one. I have three different lists that need to be displayed on the screen. It's completely possible that the lists will extend past the bottom edge of the screen, so I would need scrolling. I've tried using a ScrollView with a LinearLayout child, and putting my ListViews in the LinearView, but all of the...

UIDatePicker inside UIScrollView with pages

I have a UIScrollView with 2 pages, and I can scroll horizontally between them. However, on one of my pages, I have a UIDatePicker, and the scroll view is intercepting the vertical touch events so I can no longer manipulate the date picker (except by clicking or tapping). Is there some way to tell the ScrollView to send the vertical to...

Adding UIScrollView using interface builder

Hi , I am adding a UIScrollView as a subview to the controllers view. After that i am adding 2 views to the scroll view as the content view. When I am printing the subviews of the scroll views using NSLog(@"Scroll View Subviews : %@", [scrollViewObj subviews]); then it is displaying 4 subviews , 2 for the views added to the scroll vie...

Scrolling Content Inside A Border With CornerRadius

I'm looking for help with a WPF problem I've been wrestling with for a while. I've styled a tab view, moving the tabs onto the left and displaying them vertically. These tabs sit inside a border with rounded corners at the top and bottom left. I'm running into a problem when the tabs are scrolled. Instead of the rounded corners clippi...

How to get the point where the documentView is pinched by the mouse in a ScrollView??

- (void)mouseDragged:(NSEvent *)theEvent { clickPoint = [theEvent locationInWindow]; newPoint.x = centerPoint.x - clickPoint.x ; newPoint.y = centerPoint.y - clickPoint.y ; NSLog(@"Click Point : X=%f Y=%f",clickPoint.x,clickPoint.y); NSLog(@"Center Point : Click X=%f Y=%f",centerPoint.x,centerPoint.y); [[[self enclosingScro...

How to reuse WPF ScrollViewer to create my own scrollable control?

I'm trying to improve the graph drawing control that comes with Graph#. It's good, but things get out of hand when you start dragging nodes around. This is my first encounter with WPF, so this is probably a newbie question. :) I have the GraphCanvas control which has nodes and edges on it. They can be dragged around which changes their ...

Android ScrollView layout problem

I have several ListViews in a LinearLayout. It's listing things by day, so I have a TextView containing "Sunday:" followed by a list of items, followed by a "Monday" TextView, etc. Works great, but doesn't fit in the screen. So I added a ScrollView as a parent of the LinearLayout. Now it scrolls, but the ListViews all have room for 2...

Iphone Scrollview Question

Hi there, i am quit new at iphone development and trying to make a photo collage software while learning it. Right now i have a lil problem and hope you can help me out. I have an UiviewController with a view in it, in this view i have 7 scrollviews with uiimagevies in them for zooming and scollign images within these scrollviews. All...

Shadow or Border around a scrollview iphone

Hi there, i would like to draw a border / shadow around a uiscrollview, i know that i could get there with an additional view or scrollview but dont like the handling an drawbacks but i heard that there should be a possibility to dirctly draw a border to a scrollview and that is what i would prefer. I am quit new to iphone dev so if th...

Page Scroll View Help, different views controllers each page??

Ok, so I am trying to a pagescrollView with two views each with a different view controller so I can work on each different view. I got apple's sample code and it seems that they created a lot of different view "lazily as they said" how can this code be altered so that I can have the first page be one view controller and the second page ...

[WPF] The "visible area" of a control ?

Hi, I have a Canvas within a ScrollViewer. The Canvas have a size of 600x600 and the ScrollViewer 400x400. If i scroll to the right side, i can't see 200pxl left side of the Canvas. Therefore my area of Canvas begins at x=200 but actually the visible area at x=0. Is there any way to get so "visile area" of a control by a property or some...

Images appear at wrong position during view animation

Hi Guys, I have got a problem. I have made view including a scrollview. In the scrollview I am adding lottery balls with labels. I have setup the animation between views and when this view with the balls animated, the balls are at the same position (left upper corner of the scrollview), until the animation is fully finished. Than the b...

scroll to a specific textfield in a scrollview/scrollview stop scrolling when keyboard is on screen

hello, I got stuck in here, I have a custom scrollview in a view this scroll view has an add field button which lets user to add new text field to the scrollview. When user taps on a particular textfield keyboard appears and hide the textfield, to overcome this I followed UICatalog example, but it moves the whole scrollview up to pr...

Best practices combining list and non-list views, like the Market

I'm trying to tackle a problem that seemingly many Android developers have, which is how to intersperse lists with non-list data, in one big scrollable pane. The model I have in mind is the screen for an individual app in the Market. You have a big description, a list of a few lazily loaded comments, and then some individual items tha...

Scrollview vertical and horizontal in android

I'm really tired looking for a solution for Scrollview vertical and horizontal. I read that the any view/layout implements this feature in the framework but i need something like this. I need to define a layout within other, the child layout must implement scrolling vertical/horizontal for moving. Initially implemented a code that mov...

UIScrollView with tabbarconroller

I am using a nib file and in that I am using a view which is UIScrollView.And my UIscrollView is in UItabbarcontroller.But I dont know how to scroll the view.can anybody guide me how to scroll the view in Tabbarcontroller. ...

Android TableLayout question: get a fixed-width right column?

(Edited: I'm one step further than before) I've been trying to get a simple 2-column TableLayout going where I have a LinearLayout in my left column that I dynamically add elements to which fills up the horizontal space except for the fixed 100px right column. Here's what I have so far which works for me IF the LinearLayout contains mo...

HorizontalScrollView shrinks GridView to small line.

When I put a HorizontalScrollView around a GridView, the GridView gets compressed into a small column on the left. The Gridview's vertical scrollbar even appears on the left. The HorizontalScrollView's width is set to fill_parent and the GridView is also fill_parent. I don't know why this is happening. I tried setting the GridView's vis...

Updating a ScrollView's Content

I have an app which contains a scrollview with several tableviews. Each tableview is loaded from another viewcontroller. It is built from the PageControl sample app from Apple. My goal is to have it work exactly like Apple's weather app. I have everything working just fine. All content loads perfectly and scrolling side to side displays...

Callback jquery.scrollview.js

Hello I'm using the jquery Scrollview plugin (http://code.google.com/p/jquery-scrollview/) to scroll drag a div with overflow hidden. My question is how I go about to get a callback function on this? Anyone? ...