A layout container for a view hierarchy that can be scrolled by the user, allowing it to be larger than the physical display
0
votes
0answers
15 views
Filling HorizontalScrollView from right
I programmatically add some text view to a linear layout starting from right, so put
<LinearLayout
android:id="@+id/results"
android:layout_width="wrap_content"
...
1
vote
1answer
19 views
HorizontalScrollView doesn't notify scale of child
I have the following problem:
I got a HorizontalScrollView, containing a LinearLayout "main". In this LinearLayout, I want to add several CustomViews. When I scale the LinearLayout "main" now, using ...
0
votes
1answer
37 views
Horizontal ScrollView above a Button from LinearLayout
What I wish to achieve is something like this:
The thing is: after I tap on the circle button on the bottom layout, it appears a HorizontalScrollView with the possible colors of the product (which ...
0
votes
2answers
39 views
show touched image in HorizontalScrollView
I implementing a gallery like app in android, the code get the pictures from a specific folder on sdcard and show it in HorizontalScrollView. I want to display each picture that user clicked in ...
-1
votes
1answer
47 views
How to implement an horizontal slider for iOS (similar to Twitter app)?
I'm working on a iOS project and I would like to implement an horizontal slider similar to the Twitter app for iOS. You know, you can slide the user's picture to display more information (bio, url, ...
0
votes
0answers
55 views
Gridview horizontal scroll with variable number of columns
I am having n number of images to be shown in a gridview. Prsently, I'm populating a gridview in an activity with three columns and one row. I provide a separate link to another activity, which ...
1
vote
1answer
52 views
How to create Horizontal scroll view with the TextField in Blackberry
I am new to the Blackberry Field, I want to create a customized Horizontal scroll view which should exactly looks like in the below image. Any Help will be Apprreciated
I am using Blackberry ...
2
votes
1answer
29 views
scrollable and non scrollable images
I'm trying to build a gui for my app. It is comprised of two images, one on top of the other. The bottom image needs to be scrollable, the top image needs to be fixed.
This is the current layout xml ...
0
votes
2answers
64 views
Adding a horizontalScrollView to bottom navigation bar
I have an activity which contains a table layout and below it I have some buttons, I then implemented a sort of navigation bar using radio group and radio buttons. What I want to do is add a ...
0
votes
1answer
31 views
Changing a textview by horizontal-scrolling
I want an Android Activity which only function is the next: I show a text (TextView I assume), and where there is an horizontal-scroll I change that text to another one, and so on with about 5 ...
0
votes
1answer
33 views
How to blink a horizontal scroll bar?
Currently the horizontal scroll bar is visible only when the user is interacting with it.But I want the scroll bar should blink always so that the user can know that there is some item present to the ...
0
votes
0answers
12 views
Is it possible to listen to an event and act upon it and pass it onward for another view to pick up?
I have a custom view that supports zooming via a scale gesture and ideally, I'd like to put it in a ScrollView and HorizontalScrollView so the panning of that view is handled automatically.
Is ...
0
votes
0answers
28 views
Not showing complete image
I have a ImageView which shows image whose size is 2000*650. I am not able to show this complete image on screen. I also have HorizontalScrollView as a parent of imageview.
But i am able to show ...
0
votes
0answers
42 views
Horizontal Scroll View not working for HDPI devices
I have HorizontalScrollView which has image whose size is 2000x650. Its coming well in xhdpi devices. I tried in nexus as well as s3. but when i run the same in hdpi device it does not scroll well and ...
1
vote
2answers
148 views
Vertical Scroll bar with Horizontal Scroll Android
Running into "unable to scroll" issues
I am trying to get a customized vertical scrollbar working with the ability to scroll horizontally.
I am trying to put 7 vertical scrollbars ...
5
votes
3answers
185 views
Android only download images that are visible in horizontalScrollView
I have a HorizontalScrollView which contains a LinearLayout to hold all my view. I add about 20 RelativeLayout which contains a ImageView and TextView to the LinearLayout. I would like to only load ...
2
votes
1answer
110 views
Scrolling a HorizontalScrollView by clicking buttons on its sides
I am using a HorizontalScrollView within a Fragment. When I scroll this view instead of scrolling the items within HorizontalScrollView the whole fragment is scrolled to either left or right. Now I ...
-2
votes
1answer
270 views
Android horizontal scrolling like Gallery [closed]
First of all, sorry for my bad english. Hope to understand about that.
https://dl.dropboxusercontent.com/u/48372563/Masterpieces/device-2013-04-17-003424.png
I want horizontal scroll like Gallery. ...
0
votes
0answers
28 views
Getting Android HorizontalView to work like I want
This is the code I have:
<GridView
android:id="@+id/mainGridView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:horizontalSpacing="10dp"
...
0
votes
0answers
80 views
Getting current image from horizontol scroll view android
I am trying to make a simple image gallery through which I can set wallpaper; I am using the below code to fetch the files from download folder and display it in scroll view.
I am able to do that, ...
0
votes
0answers
32 views
Fetch Current image from horizontol scroll bar android
I am trying to make a simple image gallery through which I can set wallpaper; I am using the below code to fetch the files from download folder and display it in scroll view.
I am able to do that, ...
4
votes
1answer
199 views
How to Assign background container for horizontal image scroll list
I want to display horizontal image scroll list so i search on google and i found very good tutorial but non of them explain idea to implement dynamic container for that horizontal list.
I want to ...
0
votes
0answers
41 views
Extending ImageView. Make the scrolls work
i'm extending ImageView to reimplement OnDraw method, but i have some problems with scroll. Now I have this in XML file:
<ScrollView android:id="@+id/ScrollView02"
...
0
votes
0answers
95 views
Scrollable inner and outer grid in WinRT (Excel sheet view)
I am trying to create a list of employees and their roles along with a timeline view (weeks of the year) of the projects they are working on. I am taking an existing excel sheet that contains this ...
0
votes
1answer
102 views
TextView pushes buttons off screen with HorizontalScrollView
I am aiming for a layout similar to the native calculator app. I want text to trail off the left of the screen without moving the buttons on the right. Currently my text moves to the left until ...
1
vote
2answers
99 views
Freeze one table column horizontally
I have an activity in which I have implemented a tableview, the table view has a header and a body, the table is horizontally and vertically scrollable.
This is the source code of the activity:
...
1
vote
0answers
156 views
android 4.2.2 keyboard changes horizontal scroll
My problem is (after a lot of search and many tests) that my application works fine with devices with android 4.0 and 4.1, .
But with an emulator with Android 4.2.2, every time that I use the ...
0
votes
1answer
141 views
trying to dynamically insert photos into horizontalscrollview (android)
I am trying to extract photos from my drawable folder into an ImageView array and add the views from the array as childs to the linearlayout which is part of the horizontalscrollview.
However when I ...
0
votes
1answer
434 views
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first
I am working on horizontalscrollview with swipe the screen horizontally, I want to add view dynamically on present view but its not happening, What I did wrong in the code.. Here is my code
...
0
votes
0answers
71 views
Error with custom ScrollView
I'm creating a 'snap to' HorizontalScrollView for my level select screen. I have some code which I can't understand why it does not work (the ScrollView does not snap, it behaves as a normal ...
0
votes
0answers
90 views
Image height and width is ignored while using HorizontalScrollView
I am using HorizontalScrollView widget https://github.com/dinocore1/DevsmartLib-Android. I am adding images to my HorizontalScrollView using adapter.Images are displaying but thr size is fixed and ...
0
votes
1answer
268 views
Android HorizontalScrollView snap
So I have a horizontalscrollview and I want to try add a snapping effect, that basically centers an element.
I have done it all in XML basically so far.
<HorizontalScrollView
...
1
vote
1answer
141 views
Android: Horizontal scrollview issue
I am facing layout issues while using the horizontal scrollview to scroll images with checkboxes
below is my layout
<HorizontalScrollView
android:layout_width="wrap_content"
...
0
votes
1answer
293 views
Horizontal Scroll View inside LinearLayout - Android
I have a custom list. I am trying to scroll horizontally only specific part. For Instance, in the below image iam trying to scroll horizontally just the orange box.
Here is my XML Layout: In the ...
0
votes
0answers
42 views
Android: Can I control a ScrollView element's width relative to the whole screen?
I have a Fragment which I want to use in a HorizontalScrollView. The Fragment has a series of RelativeLayouts that are exactly the same format, only different data. There are 6 of these ...
0
votes
0answers
146 views
HorizontalScrollView Child not visible
I have a HorizontalScrollView with a LinearLayout as a child in say MainMenuActivity, which I fill with 3 buttons. Lets call this State1.
A B C
Clicking one of these buttons--> ...
0
votes
0answers
95 views
viewFlipper and HorizantalScrollView in a VerticalScrollView
Hi as Per The Requirements i Need a ViewFlipper and HorizantalScrollView in a Vertical ScrollView. But when i am trying to swipe between views in the flipper views are getting changed. but scroll ...
1
vote
1answer
395 views
Custom view inside Horizontal scroll view not scrolling
i am working on a custom view. when i put custom view inside Horizontal scroll view the Horizontal scroll is not working.I think i have made mistake in writing MeasureSpec but i dont know how to ...
2
votes
1answer
88 views
HorizontalScrollView issue
I want to make a news ticker using a HorizontalScrollView. As a first step, I am simply trying out the HorizontalScrollView which contains only a Button as the content. I want the Button to fill the ...
0
votes
0answers
301 views
Android moving type from Gallery to HorizontalScrollView
I am looking for a wallpaper picker
then I used the SDK sample Home project
but there have one problem,when I copying the code to my own project
It say "The type Gallery is deprecated"
then I ...
0
votes
0answers
121 views
HorizontalScrollView inside ListView. ListView is not clickable
My problem is like this one ListView items not clickable with HorizontalScrollView inside (My problem is that when I added the HorizontalScrollView, my list items became unclickable. They don't get ...
0
votes
0answers
84 views
HorizontalScrollView inside AutoCompleteTextView suggestion's dropdown breaking item selection
I am using a custom Adapter attached to a AutoCompleteTextView to show a list of suggestions in a particular layout where, among other things, there is a HorizontalScrollView with other components in ...
3
votes
0answers
268 views
Custom view not shown in Horizontal scroll view Not working
When i try to add my custom view to horizontal scroll view it's not showing.
but same custom view is shown in other layout like Relative and Linear Layout.
layout=new LinearLayout(this);
...
0
votes
0answers
173 views
xcode 4.6 Vertical scroll works, but horizontal doesn´t
Im quite new to iOS Development. Using .xib not storyboard.
I´m adding a very wide picture to my ViewController but i can only get the vertical scroll working. What am i doing wrong?
ViewContoller.h
...
0
votes
1answer
220 views
Android Display Image and Text in HorizontalScrollView
So, I have this layouts:
my main.xml (pseudo)
<LinearLayout >
<RelativeLayout>
<HorizontalScrollView >
<LinearLayout
</LinearLayout>
...
0
votes
0answers
261 views
Android- change ListView/ GridView to implement HorizontalScrollViews
I'm quite confuse now of what to do. First I've used GridView and ListView for my list just to
check if parsing JSON is okay and well it worked fine. Now I want to enhance my application, from simple ...
0
votes
2answers
387 views
Get child location in HorizontalScrollView and scroll to it
Looks like I can't get or set any position or scrolling amount in my simple layout:
// Relative layout - main_layout
<HorizontalScrollView
android:id="@+id/MenuScroll"
...
0
votes
1answer
116 views
ImageView not displaying inside of HorizontalScrollView in android
I have an image that is 8000 pixels long that I would like to scroll through horizontally. When I insert the image as an ImageView into a HorizontalScrollView and run it on a physical device (Samsung ...
1
vote
0answers
56 views
HorizontalScrollViews scrolling together
I need to scroll 2 parallel HorizontalScrollView dependently, which means that if I'm scrolling one, the other one should scroll too.
How can I do such a thing?
Thanks in advance.
1
vote
2answers
349 views
Facebook timeline like listview
The facebook timeline seems to display all the feeds in the listview vertically. When the user shares his/her multiple photos, then those photos are displayed in horizontal list view. Has anybody any ...



