fastscroll Questions
3
In my application I have activity_main.xml like this:-
<Coordinator Layout>
<AppBarLayout>
<CollapsingToolbarLayout>
<ImageView/>
<Toolbar/>
</CollapsingToolb...
Rogelioroger asked 21/7, 2016 at 15:4
11
Solved
Background
On ListView, you could have a fast scroller which allowed you to drag a scrollbar to easily scroll to wherever you wished (using fastScrollEnabled attribute)
Together with "SectionInde...
Cystic asked 6/1, 2015 at 11:59
0
I have implement RecyclerView fast scroll using following properties:
<android.support.v7.widget.RecyclerView
...
app:fastScrollEnabled="true"
app:fastScrollHorizontalThumbDrawable="@drawable...
Outside asked 16/7, 2018 at 12:47
2
Solved
I have a ListView having fastScroll always enabled and SwipeRefresh implementation. When i swipe the list downward, it refreshes the list. My problem is fastScroll. If the list has its first item v...
Halstead asked 21/7, 2014 at 10:35
7
I have a list of events which are seperated by month and year (Jun 2010, Jul 2010 etc.)
I want to enable fast scrolling because the list is really long.
How do I enable fast scroll on ListViews i...
Untinged asked 21/2, 2012 at 9:13
2
Background
I've made a tiny library, which shows how to mimic the style of the stock contacts app of Android Lollipop, here.
The problem
It seems that on Android 5.1 , the fast scroller looks ve...
Quipster asked 14/3, 2015 at 19:28
5
i am doing an app where i want the fastscroll tab on my listview to be a custom thumb tab. reading the docs online i thought this would do it:
<ListView
android:id="@android:id/list"
android:la...
Surfperch asked 19/2, 2012 at 10:4
2
Is there a way to detect if a ListView is fast scrolling? That is to say, can we somehow know when the user presses and releases the FastScroller?
Juryrigged asked 25/1, 2014 at 21:34
2
Solved
here is my listview
<ListView android:layout_width="match_parent"
android:layout_height="match_parent" android:id="@+id/ListView"
android:fastScrollEnabled="true" android:divider="@null"
st...
Doi asked 8/2, 2012 at 5:40
1
Solved
I use a fragment activity to hold a list fragment which renders a bunch of products:
public class ProductsListActivity extends SherlockFragmentActivity {
@Override
public void onCreate(Bundle s...
Sheply asked 6/9, 2013 at 17:57
2
About my app
I have an app that has the holo look.
For pre-Honeycomb devices, I just backported some elements of the Holo theme.
Working with themes, styles and attrs is ok for CheckBox, RadioB...
Unroof asked 26/12, 2012 at 14:55
2
i am using an expandablelistview to show a list of groups containing different counts of children. sometimes the list is very long, so i wanted to enable fastscroll. i did this and everything is wo...
Literal asked 23/9, 2011 at 7:45
1
I am using ListView to implement a timeline. I enabled FastScroll and used SectionIndexer so that user could drag the scrollbar and see the section text displayed.
The problem is all these are bu...
Gyatt asked 26/10, 2012 at 19:22
2
I have a class which implements expandable list activity.
In the XML code (or I can do it in java), I set fastScrollEnabled to true. This does in deed enable fast scroll. BUT fast scroll only works...
Mutualism asked 16/12, 2010 at 14:31
0
I'd like to make a custom scrollbar for one of my scrollview, and impossible to find how to do.
I want my scrollbar to be more visible, and controllable like the fastScroll of the ListViews. Unfor...
Genitalia asked 2/12, 2011 at 11:56
1
Hi I am simply trying to implement an iPhone like fastscroll with an alphabetic scrollbar. See here: http://appsreviews.com/wp-content/uploads/2010/08/Cures-A-Z-App-for-iPhone.jpg
Surprisingly I c...
Complicity asked 26/2, 2011 at 19:37
1
© 2022 - 2024 — McMap. All rights reserved.