listview tag

54 questions


1 answers
81 views
0
To replace the fragment screen

I'm making a basic application to study Android. Starting with that, I'm making a memo application, and I'm using listview in the fragment to show the list of notes. Here, the notes in the list fragme...

2 years ago

1 answers
117 views
0
I have a question about ArrayAdapter.

adapter = new ArrayAdapter<InspectorItem> (this, R.layout.test_list, strs);If you run it with the above code, ArrayAdapter needs the resource ID to be a TextView error. adapter = new ArrayAdap...


1 answers
92 views
0
How do I apply events for Touch to individual items in Android ListView?

listview of logic on abstractions, the ontouchWhen that there are 10 items of the listview.The first event at 0 times, only items on the Touch down up position the How can I do?Currently, it is as fol...


1 answers
72 views
0
Can I set the interval between each item in the list in the list view on Android?

I used marginBottom to keep a distance between items in the list view. There hasn't been much change.How do I keep each item at a distance?<LinearLayoutandroid:id=@+id/alarm_occurencesandroid:layou...


1 answers
52 views
0
Can I hide a specific location in the Android Listview?

String[] _InitialSetup_Menu = new String[] { AA, BB, CC, DD, FF, GG, HH };_InitialSetup_List = (ListView) _Main_List.findViewById(R.id._Main_ListView); ArrayAdapter<String> __InitialSet...

2 years ago

1 answers
121 views
0
Can I display ListView horizontally on Android?

Is it possible to display the list view horizontally? I did it using Gallery view, but when I use it, it automatically comes to the center of the screen when I select each item. How do we solve this p...


1 answers
145 views
0
How do I erase the line between two list views?

<ListView android:id=@+id/ListView android:text=@string/Website android:layout_height=30px android:layout_width=150px android:scrollbars=none android:transcriptMode=normal/><ListView andr...


1 answers
87 views
0
How to clear the dividing line in the Android list view

How do I clear the separation lines for each row in ListView? What should I do if I can erase it from the xml?


1 answers
58 views
0
Can't you make sure that only one item in the ListView is expanded without using Expandable ListView?

Without ExpandableListView in ListViewThere are items like AA, BB, CC, and DDCan't we have xxx and yyy as child nodes only for DD of these four items?And when you press DD, it opens.To be exact, the f...

2 years ago

1 answers
119 views
0
I have a question regarding the notifyDataSetChanged() method of Adapter.

Hello. I am studying Android while making a memo application.The Notepad contains ListView and the Adapter contains CustomAdapter, which is defined by inheriting the BaseAdapter. There is only one tex...

2 years ago
« - 3 - »

© 2024 OneMinuteCode. All rights reserved.