0
votes
0answers
20 views

Android - Resize Relativelayout on listview scroll

I have a problem with resizing a RelativeLayout outside the ListView. I want to resize it, when the listview is scrolled to either get smaller to it disappears or reverse when scrolling up. My xml: ...
0
votes
1answer
21 views

Crash on scrolling a fragment up/down continuously

I hope somebody has an idea since this issue is getting me out of mind. In my application I have an Activity that includes a fragment used to insert a new contact into the address book having the ...
0
votes
2answers
29 views

Scroll image larger than a screen

can you scroll an image drawn by Canvas which is larger than the screen? with scrollview can be a solution? <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
28 views

scroll smoothly to the specific position

I have a listview which contains large no of datas,but here the problem is, it is not scrolling to the top most.Listview is updating,and the listview size is increasing.but when i need to scroll to ...
0
votes
0answers
33 views

Android ListView not redraw properly

I have a ListFragment with custom row. The problem is when I scroll items, the underlying items don't disappear. They remains visible and I didnt't find any solution to this problem. Loader loads ...
0
votes
1answer
12 views

Pass motionEvent from one scrollView to another

I have a tricky situation here. I have two scrollviews one below the other. As expected the one on top gets the events. What I want to achieve is that when the one on top reaches the end, I want to ...
0
votes
0answers
43 views

How to make GridView scroll Horizontally and Vertically?

I want to represent a DataBase output to a GridView, the deal is that I want this GridView scroll horizontally and vertically. The reason for that is that I may have a table that has a number of ...
0
votes
0answers
25 views

Is it possible to flip a ViewPager like a ListView scroll behavior?

When you flip a ViewPager, only one page is changed. Is it possible to flip more than one page in one drag touch, like the scroll behavior of ListView?
0
votes
1answer
60 views

list view image is getting changed when scrolling

I am parsing json data in a listview(imageview and textview).For first four items of listview the image and textview are correctly added but when i scroll the listview then the images in imageview is ...
1
vote
1answer
53 views

AutoScrolling a WebView Android

I want to autoscroll my WebView, what's the best way to approach? I have tried the following but doesn't seem to be working. public void onCreate(Bundle savedInstanceState) { ...
0
votes
1answer
28 views

What is the best way to display custom view with scrollable behaviour on android

I have to display multiple custom view with scrollable behaviour (as a grid list). Like scrolling horizontally and vertically on a chest grid where each item is a custom view. What is the best way to ...
1
vote
1answer
45 views

Stop when WebView is at the end

I want to be able to scroll the webview until it has reached the end of the Webview. But the code below continues to scroll down automatically even when the webview page has reached to it's end. I ...
3
votes
1answer
106 views

how to scroll an expandable list view till its end?

I made a class extending ExpandableListView. Following is the code : class CustomExpandableListView extends ExpandableListView { public CustomExpandableListView(Context context) { ...
0
votes
0answers
40 views

android, relativelayout background in gridview changes when scrolling

Here is my gridview: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" ...
0
votes
1answer
61 views

check if bottom reached method of scrollview

I have the this code and I get 2 error on line with getChildCount() and on the last line. protected void onScrollChanged(int l, int t, int oldl, int oldt) { // Grab the last child placed in ...
0
votes
0answers
94 views

GridView Scroll Left to right in android

I have a grid view with Image. I can Scroll up down if grid increases. But I want to scroll my grid left right to show all element. I mean 3 grid in a raw and when scroll left right then show other ...
0
votes
1answer
38 views

How to move the control to the bottom of a TextView in ScrollView ( Scroll to bottom)

In my layout I have a TextView inside a ScrollView. But I am unable to scroll to the bottom of the TextView programmatically. I have tried with setSelection(int) but the method is undefined for ...
1
vote
1answer
54 views

android make a listview un-scrollable

I try to prevent a listview from scrolling. i've seen on other topic ( such as How to get a non scrollable ListView?) to use a Linear layout instead. However, it is not possibble in my application, my ...
0
votes
0answers
85 views

keep Scroll position with every refresh in list view

I set a timer in my app, I could get some information from a web service and resulted in a list view to display. Now my problem is that every time the timer runs, scroll back to the beginning ... how ...
0
votes
1answer
33 views

Item not scrollable in scrollview - Android

I will try to explain the idea with this draft: Draft (not image because I don't have reputation) The main layout is a Scrollview. Then, red color is a LinearLayout and will contain an image. The ...
0
votes
3answers
67 views

Multiple scroll view android

I have an expandablelistview and above that there is a relative layout which contains an image .I want to scroll listview and the above layout at same time ? is it possible ? <RelativeLayout ...
0
votes
0answers
47 views

How do I show view in half on ViewPager

I use Viewpager for photos to show. but I want to show half of the View and when on touch The other half will be appear. Finally, It would show 6 times for 3 Views. is it posibble? what I want to ...
1
vote
1answer
109 views

Remove scrolling glow effect/arrows

When you try to overscroll android scrolling views there is a glow effect appears. It's blue on ICS and above. I need to make it green. I've read a lot of topics and noticed that there is no easy ...
1
vote
1answer
130 views

Maintaining scroll position in WebView

In my application, I have a HTML page loaded in a WebView. I am implementing a switchView button, which loads the same page but in a different language. I want to maintain the scroll position of the ...
0
votes
0answers
145 views

Android: DataGridView 100x100 elements

I'm creating a two-dimensional table with 100 columns and 100 rows, scrollable in both directions, such as an Excel spreadsheet. I already made ​​the table by inserting a TableRow as header row and a ...
1
vote
2answers
98 views

How to implement a lazy loaded list of images in a listview

What i am trying to do is toscroll through a list of images. But when i scroll down or up quickly the images are misplaced in order. A diff pic comes in the place where it was supposed to be. I have ...
0
votes
0answers
46 views

expandiblelistview scrolllistener

I have an ExpandibleListView and i want to load limited items/groups at at given time and when the user scrolls all the way down then programmatically add further items/groups if available. The issue ...
0
votes
1answer
66 views

Android: GridView with shelves with scroll

I want to create a GridView with shelves. I have created a class for this: public class ShelveGridView extends GridView{ private Bitmap background; public ShelveGridView(Context context, ...
0
votes
1answer
90 views

Scroller startScroll with negative offset

With a positive offset, startScroll would scroll to the right. So with a negative offset, I'm assuming it should scroll to the left-the documentation doesn't say anything about this. However this ...
2
votes
1answer
138 views

Webview not scrolling after adding setOnTouchListener

i have a webview with the below code: WebSettings webSettings = webView.getSettings(); webSettings.setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN); webSettings.setSavePassword(false); ...
0
votes
0answers
26 views

Android - delayed snapping

I got a HoricontalScrollView with a lot small layouts in it. How can i archieve that my elements snap after ashort time without scrolling. the only solutions i found did the snap when the finger was ...
0
votes
6answers
46 views

List of items with custom views/layouts

I need a way to create a vertically scroll-able list. The list should then contain a bunch of rows, where each row should have an image button, an image , three TextViews and two images. Like this: ...
0
votes
1answer
224 views

Scrolling over large canvas

I need some help understanding the fundamentals of scrolling over items that are drawn to a canvas in Android. Suppose I want to create a timeline where time at 0 is the top of a visualization and as ...
0
votes
1answer
64 views

Android listview does not scroll when it is touched and pulled down at the same time

There is a list view. I wrote this to stop the scroll when the user touches the screen while scrolling: public class OnTouchListner implements OnTouchListener{ @Override public boolean ...
0
votes
0answers
35 views

Android: displaying variable number of buttons in a single line

I tripped in a terrifying analysis document thet describes functions for new Android application. In one part of this, I have an Activity that show a question and a not-predefined number of possible ...
0
votes
1answer
89 views

Android: Hide view while scrolling a ViewPager

I have a layout with a ViewPager and also right left arrows inside the ViewPager for manually moving to the next view without swiping. While the user is swiping, I'd like to hide those arrows (or ...
0
votes
2answers
44 views

Stop scrolling in a listview when user touches the list - android

I have a list view that contains about 30 items. When I scroll it down it just goes to the very bottom of the list and does not stop when the user touches the list. Is there a method to stop the ...
0
votes
0answers
33 views

ListView items outside initial view aren't clickable

I have four ListViews which I synchronize their scrolling in order to scroll simultaneously when either of them is scrolled. The first ListView is filled by a custom adapter and contains only a ...
0
votes
0answers
70 views

Detect end of scrollview and pop up android

I have a scrollview in android with several elements in it. Here is a snapshot of what i have done. ScrollView sv = (ScrollView)findViewById(R.id.mainscroll); int maxScrollY = ...
1
vote
2answers
323 views

Androd ListView add items to top without list view scroll

I have a listView and I want to add new items to the top of the list view but I dont want list view to scroll its content. I want user to look at the same item as he was looking before new items were ...
0
votes
1answer
272 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 ...
0
votes
1answer
45 views

Scroll list inside of tab, so that part above tab is hidden

I have TabHost and List inside one of tabs. Above TabHost I have some info, which will be shown. So when I want to scroll down list, that info have to be hidden, and only tabs are visible. (like in ...
0
votes
2answers
94 views

Scroll View not Scrolling

I'm adding an image view to a linear layout, that linear layout is then added to scroll view. I'm displaying the scroll view with window manager, because this is all happening from a service. I can ...
1
vote
1answer
146 views

Is it possible to support a setScrollY() (ScrollView API 14) like function for older API levels?

I have a simple first Android app that I am coding. One of my main activities is a ScrollView that's fairly long. In that I have some buttons that call other ListViews. When the ListViews are finished ...
0
votes
1answer
72 views

How to slowly scroll a zoomed in image like in a presentation?

Background I have some high quality images which I wish to show with some transition between them, like in a presentation. The problem Since Android has many screen types, for each "frame" of the ...
0
votes
1answer
89 views

“returnRes cannot be resolved to a variable” error in android

I had tested the function of endless Scrolling function in a dummy projects, it works fine but if i paste the same code in my original project m getting "loadMoreListItems cannot be resolved to a ...
4
votes
4answers
658 views

Android ListView - stop scrolling at 'whole' row position

Sorry for the confusing title, I cannot express the problem very concisely... I have an Android app with a ListView that uses a circular / "infinite" adapter, which basically means I can scroll it ...
1
vote
3answers
194 views

How to create Circular Horizontal ScrollView

What i need to do is to create a horizontal pipeline in the middle of the Screen in which images are being populated. It is just like a moving horizontal pager. The difficulty is that i am still ...
0
votes
2answers
391 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" ...
1
vote
0answers
155 views

Scrolling a ListView and a ListFragment of a TabHost simultaneously

As the ridiculously long title would suggest this is a complicated problem to explain so here's an illustration: General: What I have designed is a FragmentActivity that contains a ListView and a ...

1 2 3 4 5 11