0
votes
0answers
53 views

Multiple loading events on a listview at scrolling

I started to learn Windows 8 development and I want to optimize an application I've made. Let's say I have a list with around 40 elements, which I load from a web service and I am running this ...
3
votes
3answers
116 views

Android - Make a LinearLayout which contains a ListView scrollable

I know that everyone's recommended that we should never use ListView and ScrollView together, and I totally agree. However, I'm currently stuck with a very simple pattern like 8tracks' profile page ...
1
vote
0answers
39 views

How to ListView.setSelection(int) when ListView is contained in a ScrollView?

I have a ListView which can't be scrolled due to I'm setting its Height programmatically. I have aprox. 50 elements in this ListView, each element is bigger than the screen itself. I'm using a ...
-1
votes
1answer
56 views

Alternative to ListView inside a ScrollView

I have been trying to hack a ListView into a ScrollView. As many threads have pointed out, this is a very bad practice (see How can I put a ListView into a ScrollView without it collapsing?). I am ...
-1
votes
1answer
58 views

Android Expandablelistview with listview as a childview

How to add listview as a child in expandablelistview item click? Something like the image below Here when an item is clicked from an expandable list it will expand a listview with fixed height and ...
1
vote
1answer
145 views

does Facebook timeline android use scrollview or listview?

I'm developing a small application like facebook timeline, but I don't know it use srollview or listview. Can you tell me that? Thanks,
1
vote
1answer
121 views

Extending the scrolling area in a ScrollView / WebView / ListView

I'm trying to create a custom scrolling component (ScrollView, ListView, WebView) that its scrolling area (content area) can be programmatically extended beyond the content. Add "content padding" at ...
0
votes
0answers
64 views

Android Custom scrollVew not scrolling to bottom

I have created a custom scrollview as import com.android.listeners.ScrollViewListener; /** * * CustomScrollView * * Description: To create custom scroll view. * * * */ public class ...
0
votes
0answers
559 views

Infinite scrolling of listview in android

Now i should implement infinite scrolling to listview, for this i had found one easiest code that is @Override public void onScroll(AbsListView view, int firstVisibleItem, int ...
1
vote
1answer
186 views

ImageView + ListView + GridView - Scrolling works only with ListView

I wrote xml file that show imageview then listview then gridview .. the imageview doesn't scroll up .. only the listView scrolls and the gridview doesn't appear at all I tried using ScrollView .. ...
0
votes
0answers
129 views

Best way to implement Android Timeline Calendar

I want to create Timeline like in iPhone The event time can be 9.42 and it should start drawing below dash line of 9.30 with the % of how far from 9.30. The only way I can think of is using ...
0
votes
0answers
112 views

ListFragment in an Activity with ScrollView

parent.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/parent" ...
0
votes
0answers
120 views

Dispatch a scroll event from listview to scrollview

I have a ListView in which every row contains the following -2 images -1 textview -1 scrollview that will display a bunch of tags I searched the internet and I found out that is really hard to ...
8
votes
1answer
186 views

How to work, when listview inside the scrollview?

I doing this In Android 1.6 and 2.2 ... I have One ScrollView in the Activity (All the content in the ScrollView) ... And Second is, One ListView in the Activity .... When I Scroll ListView, at ...
1
vote
2answers
308 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 ...
0
votes
1answer
142 views

scrollView linearlayout and listview

I'm doing an android app, and I just want to have an scrollable layout, but inside of this layout I want to put some textView and 2 listView, and this is my problem, the listView. I need to include ...
0
votes
2answers
42 views

Android ListView - retrieve visible bounds

I am trying to get the values of (any one of) the visible coordinates of a ListView. I have used a ScrollListener, but I'm not sure which property will give me these values. I eventually want to ...
1
vote
2answers
39 views

How to merge the three views into a blank view and display?

I want to set a ScrollView for some views. I need to merge some view into one view and add to ScrollView. The three views are listView, custorm view and Gallery. Who knows how to merge the three ...
1
vote
1answer
204 views

How can we add multiple ListView in Same Activity?

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/lyt_stats" android:layout_width="match_parent" ...
0
votes
1answer
106 views

how to add single scroll to view and listview in same layout in android

I have a situation, in that situation one view contain imageviews on upper part and list view in the lower part and when we scrolling it is only scroll listview part but i have to scroll whole view ...
2
votes
4answers
116 views

when i am scroll listview that time list view element background color change to black

I have listview,when i am scroll listview that time listview element background color change to black. I am find couple of hour but not getting solution. I am uesd ...
3
votes
2answers
258 views

when listview scroll that time edittext set default value

I have listview with edittext and -/+ button.When i am click on button change edittext value like increment/decrement. when i am set value like 5 and scroll the listview the edittext set value as a ...
0
votes
2answers
247 views

Android Layout Issues, Several ListViews in a ScrollView

First of all - I know, that I shouldn't put a ListView into a ScrollView, because ListView takes care of its own vertical scrolling. Anyway, in my case it's different - the problem: I have a View, ...
0
votes
1answer
198 views

ListView or ScrollView?

At the moment, I am using a ScrollView with a LinearLayout inside it. I want to implement a snap function. Am I better off using a ListView? Is it even possible to implement a snap function with my ...
2
votes
3answers
364 views

Android ListView custom header

I have a custom listview, which is re-arrangeable(drag & drop) and obviously scrollable. I need to add a custom header with this listview which should scroll with the list. I have tried ...
0
votes
0answers
372 views

Detecting swipe gesture in a ListActivity

I googled a lot about my problem but I couldn't find the answer. I have a ListActivity which shows different entries from my sqlite database. If the list is bigger than the screen, it automatically ...
0
votes
5answers
138 views

How can I use two listview in a layout?

There is a layout as follows. Two listView and on their headers with image and text. There are buttons at the bottom. My problem is, If the first listview is to height, other listview and buttons does ...
0
votes
0answers
90 views

How ScrollView(or ListView) in vertical mode and has snap effect at the bottom of screen?

I have several questions about a scroll effect, hope someone can help me. Let me state it point by point. What I want a scroll box is: docked on the bottom of the screen (in full width); number of ...
0
votes
1answer
146 views

ScrollView show large space at bottom

I have added Button and ListView on a ScrollView. Button is added below to the ListView in ScrollView but Problem is that it shows large space between button and ListView. Here is my code ...
0
votes
2answers
53 views

Setting ScrollView for my layout

In My Layout I want to set scrollview for a ListView and imageView. I tried as shown in below. But it did not work. If I remove the Scrollview then I can able to scroll the Listview. The Items in the ...
1
vote
0answers
73 views

Listview to show exactly two cells of list

i want to create a list view inflating custom cell. The cell size may vary depending on the size of text in it. There can be n number of cells. At a time, i just want to show exactly two cells in the ...
3
votes
1answer
146 views

Hanged listSelector in ListView

I am implementing ListView with android:listSelector <style name="ListView" parent="@android:style/Widget.ListView"> <item ...
0
votes
1answer
66 views

Scrollable Layout with a list embedded

I'm trying to create a scrollable layout with an embedded list, similar to the Spotify application for Android one shown here (One image at the top followed by a list and the whole layout scrolls). ...
0
votes
1answer
570 views

Horizontal listview header text animation

Is there any way to create horizontal list view with header. I think Horizontal list view can be created via HorizontalScrollView component. As displayed in the tasks app ...
0
votes
1answer
255 views

Wpf scroll a page scrollViewer when scroll ListBox [closed]

I have a page with scrollViewer also at this page I have a listview. When I scroll the listview the scrollviewer of the page doesn't scroll. Any ideas how to get it works? For example, a ...
0
votes
0answers
335 views

Android - ExpandableListView in ScrollView

Ok, i know this isn't to do, but i need to do it! My layout is this : When a group is tapped and the text is shown the view increases its height and, having a scroll view, it scrolls. When the user ...
0
votes
1answer
220 views

Make custom visualization for ListView inside a ScrollView

I have a ScrollView which contains a lot of items. On the bottom of it I add a set of items from another Activity. I check the input ArrayList from another Activity and should to add proper count of ...
0
votes
1answer
149 views

Dynamic deleting views from LinearLayout which were added dynamically

Help with such an issue. I have a ScrollView which contains a lot of items. In the bottom of it I add a set of items from another Activity. I check the input ArrayList from another Activity and should ...
4
votes
1answer
194 views

Error with my List, ScrollView and buttons

I'm new to Android development so I just want to ask about how am I suppose to do these things right. I have made a grocery list app which will show the quantity, item name and status (checkbox). Here ...
2
votes
3answers
3k views

Disable ListView scrolling

I want to show a Profile screen for my users. It must have three views (2 Buttons and a ImageView) and a ListView to show the content made by that user. However, I don't want the ListView to scroll. ...
2
votes
1answer
116 views

ListView Indicate more scrollable itmes

all i want to do is When the page has more data, there should be some indication like three dots or something like that at the bottom of the page so that user will know there are more records and will ...
0
votes
4answers
435 views

android chat application - ListView vs ScrollView

I'm building a chat application. Inside my chat messages view i have an Activity which render last 20 messages and add them to a ScrollView programmatically. It actually works pretty good and fast. ...
1
vote
2answers
88 views

Scrolling Functionality

I need to implement a UI like this: In the above screen row needs to be scrolled horizontally and columns need to be scrolled vertically. I have not used Gallery as It is being deprecated. Here ...
2
votes
2answers
1k views

ListView inside ScrollView

So I am aware that I can't use ListView inside ScrollView, because ScrollView gets the focus in that case and ListView becomes non-scrollable. But I have a program that goes out of screen when in ...
1
vote
1answer
331 views

ListView acting strange due to ScrollView?

Screenshot: As can be seen in the picture above for some reason I get a strange white area of nothing in my listView when using a ScrollView. If I remove the ScrollView the white area of nothing ...
9
votes
2answers
465 views

Scrolling a Gallery enables pressed state and removes click listener from subitems

I have a gallery of fairly complicated items. Each item is composed of an image and 2 buttons. When the gallery loads everything works, the buttons do what they are supposed to, and the pressed state ...
0
votes
0answers
111 views

Confuse with listview and scrollview's getTop getBottom

when get ScrollView's child view's getTop or getBottom, whatever i scroll up or down, the result alaways same. on the contrary, when listview scrolls, child view's getTop or getBottom changes every ...
1
vote
3answers
468 views

Scroll view not wrapping around its content

I got such problem: i have a MapView and a ListView below it. Map size is fixed. But I need to scroll my views together. I, somehow, handled problems with non-scrolling map and one-itemed-list, but ...
1
vote
3answers
556 views

Why my Android Listview is not scrolling?

I have made a xml display with some items . But my listView of that xml is not scrolling. I have made a scrollView and the listView is inside the scrollView , is it a problem ? If I design display ...
0
votes
0answers
57 views

How to put imageview in scrollview?

I am stuck in very strange problem. I'll try my level best to explain it. I have one image which i received from the web and set it in image view and below that image i have set a listview which ...

1 2 3