A concrete BaseAdapter that is backed by an array of arbitrary objects.
0
votes
0answers
4 views
Open others app by listView loading from catalog
I have some idea but it's hard to created for me (Android app). My idea is creating SQlite database which will be loading others app's from some catalog by the src. In arrayAdapter show only names of ...
0
votes
1answer
22 views
Hide items from GridView with custom ArrayAdapter
I tried to hide some items in my GridView dynamically with this code:
public class GridHelper extends ArrayAdapter<Object>
{
private Context context;
private int layoutResourceId;
...
0
votes
0answers
24 views
Array adapter become null after application go to background and restore
Problem Description
I have write a little application and now I have a big issue. The main problem is that application work fine until it goes to background and after some time come back. After that ...
0
votes
1answer
15 views
Android custom Array adapter and database connection
I couldn't find any solid information regarding this so here it goes;
I am using information from SQLite db in my array adapter to show/hide a view. Array list data comes from file system and ...
0
votes
1answer
27 views
ArrayAdapter not working properly
Ok, so this is my scenario:
Im developing a chat, using JSON (we got no Jabber server by now). There is a service asking for new chat messages every 30seconds:
public class ChatService extends ...
0
votes
1answer
22 views
ListView data not showing in fragment
Here's the code that's producing unexpected results. If anyone can please guide me to what I'm doing wrong here
public static class LaunchpadSectionFragment extends Fragment {
@Override
...
0
votes
1answer
18 views
Modify Listview adapter rows when switch is on or off
I have ListView with row as TextView and Switch.
Now I want that When I click on First Item Switch i.e. when I on the Switch(position==0)
Then all Rows below that are Visible else When I make First ...
0
votes
3answers
49 views
How to display the imageview and textview using listview without baseadapter in android?
i want to display the imageview and textview using listview .But without using base adapter in listview.is this possible using ArrayAdapter?
final String[] menuitems = new String[] {
...
0
votes
2answers
51 views
Get Text from Json and add it to String[]
I want to fetch a text (some urls) from Json and add them straightly to a String[] in android. The text is like
...
0
votes
0answers
20 views
Fetching Data into custom listview From an URL using JSON
Am a begginer in android devoplement. I am on a project on online shopping which shows the list of the products in the custom list view.The task is that I need to fetch the details of each products ...
0
votes
0answers
28 views
text Color ArrayAdapter with simple_list_item_single_choice
am creating a listView using array adapter. this is my code.
listView = new ListView(context);
ArrayAdapter<String>adapter = new ...
0
votes
2answers
61 views
Change text color of list items in array adapter
I create a list view and implement that list view in my custom dialog. that list view uses the array adapter and in my array adapter I am using my own layout with desired color. The code is given ...
0
votes
2answers
45 views
+50
Android AsyncTask SoapObject Request Issue
I want to use .net web service in my android app. I send request to web service by using asynctask. But request doesn't take value properly. I used this structure in many android apps and I never got ...
0
votes
1answer
35 views
Android. ListView. Add items dynamically
There is ListView which uses my own CustomArrayAdapter. I can't dynamically add items to ListView. ListView is component of Fragment.
if(!recentItems.isEmpty()) {
getActivity().runOnUiThread(new ...
0
votes
1answer
19 views
custom list adapter unintentional rearranging
I wrote a an ArrayAdapter to be used in my ListActivity but for some reason when i scroll down and then scroll back up the order of my list is being rearranged and i have no idea why. The initial ...
0
votes
1answer
34 views
Custom adapter failing without error
issue is this:
There are 49 items in the arraylist, and the adapter is stopping at item 3 without any error notification. The app does not crash, and no textviews are displayed. Here is the adapter:
...
1
vote
1answer
41 views
Cancel AsyncTask inside ListArrayAdapter and dismiss notification
The aim of the application is to offer a simple way to download and extract a bunch of archives (~200mo), to delete it, and to open it. The download display a notification which display the progress.
...
0
votes
2answers
45 views
Trying to do custom listview but it has error when I try to connect with database
I have been searching about how to bring data from mysql and show them with custom listview. Now, I found a problem with Http request. Could anyone please help me check this code? I cannot find out ...
0
votes
1answer
45 views
Problems with the method ArrayAdapter.clear
Problems with the method ArrayAdapter.clear
final String MAIN_DIRECTORY = "/";
final String LOG_TAG = "myLogs";
String directoryAddress = "";
File mainDirectory;
String folders [];
ListView ...
0
votes
1answer
28 views
dynamically add and remove views in listview specific row in android
In my application I have created Custom ListView.So as my question I want to add and delete some views to a particular row of ListView.According to that I coded. But It giving me Null Pointer ...
0
votes
1answer
20 views
Replace an arrary<String> with an new value
I have a String type list List<String> DataEnqueryDateDsc which have a value like - "John Rodriguez,214,07-05-2013 11:14:14,Hot","Saleem Ertrtt,208,08-05-2013 14:48:43,Hot",.....
List ...
0
votes
2answers
31 views
Android: Update ListViewItem with new .xml from code
I have a ListView with an OnClick-method, which I want to change the layout of the clicked ListViewItem. I want to do this by setting the layout to a new XML. As the view loads I set the items' ...
0
votes
2answers
26 views
Android Listview Adds The Same Item
I'm developing an Android Application and I'm using Android ListView. I'm getting datas from the web service and fill them into the Arraylist. It's size is 37. Then i try to fill the listview with ...
1
vote
0answers
22 views
ListFragment to display multiple pieces of data for each list item?
I am using a ListFragment to display search results that are returned from a REST call. The ListFragment only displays a single piece of data (a name), but I want it to display multiple pieces for ...
0
votes
0answers
27 views
Android action bar searchview
Hi i need create searchView from my array like in the image below.
My code:
Top_meny.xml
<?xml version="1.0" encoding="utf-8"?>
<menu ...
0
votes
1answer
38 views
ListView bug and acting diffirent each phone
The problem I am having is quite unusual. I am using a custon arrayadapter class for listview.
List items that fit into the screen area appears as normal while those items who require scrolling to get ...
0
votes
2answers
41 views
Android ListView Activity Throws a NullPointerException when restarting after a prolonged period of time
Problem
I'm making a simple app that retrieves a data set from a webserver in JSON form, parses it into objects contained in an ArrayList. This array list is then output in the form of a list view. ...
1
vote
1answer
140 views
how Create setAdapter() for a AlertDialog
i create a CustomDialogBuilder which extends Dialog... i want to create the method setApater().. i create that section but the onClick method on the adapter is not working..
my customDialogBuilder ...
0
votes
2answers
52 views
Display JSONArray to Custom ListView Exception Error Android AsyncTask Thread
I am working on getting a JSONArray from a server, and then inserting it into a custom ListView. My code executes, but I have no idea why the program crashes before anything is displayed. I put some ...
0
votes
0answers
19 views
Only one of my array adapters will work at a time in my row
I have two textfields in my row, and I'm using array adapters to assign their text. However, only one of them will work at a time. If I comment one out, then the other will work, and vice versa. What ...
0
votes
1answer
42 views
ArrayAdapter's add method adding twice
I have IconicAdapter extending ArrayAdapter:
class IconicAdapter extends ArrayAdapter<String> {
IconicAdapter() {
super(MyService.this, R.layout.activity_listview, R.id.text1, ...
0
votes
1answer
21 views
issue with adapterview and addview
so I'm trying to build and android app which takes in code from user input and puts it into a custom layout for a listview.
Here is the xml for the layout i have for each element of the list (the ...
6
votes
1answer
175 views
Android overlapping text on adapter
On some phones, mainly a Galaxy S2 I am having an issue where the results in a custom adapter overlap on each other. This is an example where user searched for the word "vaginal" in a search field, it ...
1
vote
3answers
71 views
EditTexts and ListView Practice in android not working
I have made a simple android app with 2 activity..in 1st 3 editTexts and 2 button "insert" and "cancel" are there and in the second activity its a listView.I want is that when insert button of ...
0
votes
1answer
46 views
Simple List Demo
I have made a simple ListDEmo in android..with two activity.in 1st activity 3 edittexts and 2 buttons insert and ,cancel are there...and in 2nd activity ,there is a ListView and a button "back" is ...
1
vote
1answer
35 views
Animating lazy load of ArrayAdapter
Hello I was using animation for an ArrayAdapter. I want to animate a thumbnail when its loaded... However every time any thumbnail of the list is loaded, the animation starts for every items of the ...
0
votes
2answers
48 views
LogCat Error: You must supply resource ID for textView
I have a following java files. I have just tried to create a listview with images using this tutorial. It worked in tutorial but mine is not.
Main.java
public class Main extends ListActivity {
...
0
votes
1answer
60 views
Custom cell of a ListView won't match parent width in API9
The problem is somehow related to API. In API 9+ the cells look perfectly which is like this:
However on Android 2.3 it looks like this:
I can't find reason of that. Here is my cell layout:
...
0
votes
2answers
51 views
How to display image in listview from json dynamically
I want to list text and image from json which is placed in particular url
I have successively displayed textview but how to display image my code is
public class AndroidJSONParsingActivity extends ...
0
votes
1answer
51 views
Can add ListView items without using Adapter? too cumbersome for static array display
I'd like to implement ListView and each item have multiple tags like StackOverflow list (a kind of master-detail style view).
Each tag in items is enumerated by tags string array.
The tags are no ...
0
votes
0answers
100 views
Custom ArrayAdapter for ListView
I have implemented a custom array adapter for my ListView however it never iterates over the items in the collection provided. The arguments coming into the HistoryCustomArrayAdapter always have the ...
0
votes
0answers
36 views
Android: Showing ListViews with many info causes other listviews to not show their info
Hi I have a layout which has 3 columns and each column has 4 ListViews ( the first one used as a TextView and working fine). I pass info to this ListViews from an ArrayList and if the ArrayLists are 1 ...
1
vote
0answers
44 views
Which is the best solution between ArrayAdapter and SimpleCursorAdapter? [closed]
In terms of performance is preferable to use SimpleCursorAdapter or ArrayAdapter in which I have passed an array containing values resulting from a cursor?
-1
votes
1answer
50 views
AutoCompleteTextView,show a custome dropdownlist, ArrayList<String> by CharSequence user entered [closed]
I'm sorry I do not speak much English, I hope will not delay you understand what I mean.
now,I use a AutoCompleteTextView,but the results it shows is stupid,for example,there is a ...
0
votes
1answer
46 views
Writing an ArrayAdapter dirrently - android
So I'm writing a program that has three spinners and I want to add an array to each of them. However the code I have at the moment works but is very long so I was wondering if there is an ...
0
votes
1answer
36 views
android spinner for list and “All” option
I have a android spinner that works like a filter for product listview. The spinner adapter has the list of Brand class objects. The listview then shows only the products with selected brand. Now I ...
0
votes
1answer
54 views
Add new string to resource string array dynamically
Im making workout log and i want that ther user will be able to add new exercise types.
I made string array in the resources and a spinner that will take the strings from the string array in the ...
0
votes
1answer
37 views
Weird textview.setText() inside adapter result
In my app I'm passing to adapter (which extends ArrayAdapter>) such list: List<Map<String, String>>. Single record from this list looks like: {received=true, text=Some sort of text} Here's ...
0
votes
0answers
60 views
How to delete a item from a custom Listview
I want to delete an item from a listview on selecting a check box in my listview. My custom adapter is as follows:
public class listadapter extends ArrayAdapter<list> {
private int resource;
...
0
votes
1answer
35 views
Can I populate a listview from getView of a custom adapter?
I have a listview that contains items that have listviews. I am trying to populate item's listviews from inside the getView of the custom adapter that populates the "parent" listview:
@Override
...








