android-listview Questions
5
Solved
I have created an activity and set toolbar as the actionbar which i have positioned at the bottom.
Inside that activity, I have a listview that contain some data.
Problem is, when I long press a...
Hulsey asked 17/11, 2015 at 11:34
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
5
Solved
I need to build a DialogFragment which returns user input from the dialog to an activity.
The dialog needs to be called in an OnClickListener which gets called when an element in a listview gets cl...
Ptyalism asked 20/2, 2015 at 1:7
10
I can't start a new activity clicking over an item in my listview. I want that onItemClick can open the ApkInfoActivity.. Actually when i click nothing happen.
protected void onItemClick(ListView ...
Custommade asked 29/10, 2013 at 15:18
2
I am trying to validate text in each list item in my ListView and scroll down one by one so I can validate each one... but for some reason I cant get it to continue scrolling through the list valid...
Rinker asked 3/2, 2015 at 6:13
4
Solved
I have a Fragment with a ListView. In the adapter I want to create a dialog.
class ViewHolder {
...
@Override
public void onClick(View v) {
...
AlertDialog.Builder builder = new AlertDialog.Bu...
Kielce asked 3/6, 2013 at 13:26
4
Is there a good tutorial or link that shows how to add different items to a listview?
For example, one with two Text lines and a Check box, another that you just press and and something would pop u...
Guildhall asked 10/7, 2013 at 15:11
2
Solved
I have an adapter class which is extending GroupingCursorAdapter and constructor of type
Adapter_Contacts(Context context, Cursor cursor, AsyncContactImageLoader asyncContactImageLoader).
I want ...
Index asked 27/12, 2013 at 8:24
2
Solved
I have a list view with different item types: header, folder and file like this:
Now I 'd like to implement drag file item and drop it into folder item and get the source and target position.I don...
Kumquat asked 20/12, 2015 at 14:45
5
Solved
I have a ListView. Initially, the ListView contains some data. When the user clicks on an item, another layout will be dynamically added to that item so it's height will be increased.
Right now, w...
Honky asked 4/10, 2012 at 14:42
10
Solved
I implemented the android listview with the ListActivity. Here I have the problem that when i click on the list item no action is performed when the flash color is also not coming that is the orang...
Jenelljenelle asked 23/7, 2012 at 9:42
5
Solved
In Android's ListView widget, the ListView will hold the views which is got from getView method of an Adapter in a inner class RecycleBin.
How can I clear the views in the RecycleBin and force the...
Lenis asked 21/8, 2012 at 6:8
7
Solved
I have created an xml file like this:
<?xml version="1.0" encoding="utf-8"?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
and...
Bravin asked 15/6, 2012 at 12:40
2
Solved
I have an EditText to filter the items in the ListView below it, which may contain more than 1000 items usually. The TextWatcher is:
txt_itemSearch.addTextChangedListener(new TextWatcher() {
publ...
Apprehensible asked 2/2, 2013 at 9:48
8
Solved
I use a ListView in my layout like this:
<ListView android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_gravity="center"
android:layout_heig...
Tamper asked 19/7, 2013 at 16:31
8
Solved
I cannot solve an issue with the getGroupView-method.
the problem is that the listener setOnCheckedChangeListener is getting invoked to many times.
Let say i check a certain checkbox-item. Then...
Verdha asked 28/6, 2013 at 20:1
15
Solved
I want to disable the orange highlight that occurs when touching a listView row. So far in my xml I have tried the following:
android:focusable="false"
android:focusableInTouchMode="false"
android...
Nittygritty asked 25/5, 2010 at 18:20
4
Solved
Stacktrace:
09-10 07:56:56.448 24867-24867/? E/AndroidRuntime﹕ FATAL EXCEPTION: main
java.lang.IllegalArgumentException: DrawerLayout must be measured with MeasureSpec.EXACTLY.
at android.suppor...
Briton asked 11/9, 2015 at 4:34
2
I am trying to implement a CardView flip in a RecyclerView. I just cannot figure out a simple solution. I have a working CardView where i can display a list of card using the recycler view. The pro...
Idyllist asked 9/7, 2015 at 18:19
3
Solved
I am implementing an endless ListView (like in the Twitter app). I want to make the last item not selecteble. So that if the penultimate item is selected and I scroll down with my trackball, nothin...
Passepartout asked 26/2, 2011 at 11:22
10
Solved
According to this link: ListFragment android developers
I want to set my custom layout for list, but it makes exceptions.
Here is the code:
public class ListFragmentActivity extends FragmentActi...
Blowfish asked 15/5, 2012 at 20:44
2
Solved
To enable chat-style scrolling in a List View, we can use the following properties:
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
....
android:stackFrom...
Megaron asked 4/6, 2015 at 4:27
4
Solved
I have a ListView. When an item on the ListView is tapped, it loads a SubView. I want to assign an ID to each row of the ListView, so I can pass that ID along to the SubView. How do I assign a spec...
Injured asked 14/6, 2010 at 21:53
5
I am trying to implement list view with videos as it's elements. I am using this project to display video on texture view. It uses MediaPlayer underneath. It fails (most of the time) when loading t...
Tandratandy asked 29/10, 2015 at 8:7
4
Solved
I'm trying to create a layout with 6 buttons that automatically adapt to the screen size as the tiles of windows phone. In the code I create dynamically the 6 button, 2 for line but the button shou...
Ossify asked 9/5, 2013 at 16:49
© 2022 - 2024 — McMap. All rights reserved.