Android :: ListView Autogrow Is Not Working As Expected
Oct 12, 2009
This is continuation to the question I already asked a while back. I've been offered a solution which is not really working. Anyway - here's the problem/question. Code...
View 1 Replies
Oct 12, 2009
I look at some posts from the past and it seems that if I add items to the ListView adapter it should update itself and user should be able to scroll to the newly appended items. Unfortunately it's not what I observe. If I append new items to my existing ArrayAdapter I only will see updated results if I rerun ListView#setAdapter again. Doing nothing, invalidating view etc. doesn't do anything. Here's a snippet: SearchItemsAdapter a = (SearchItemsAdapter) list view.getAdapter(); List<SearchItem> values = fetchNextSetOfItems(); a.append(values); // unless I do this - I will not see the update, but if I do - I'll jump to the top listview.setAdapter(a)Code...
View 2 Replies
View Related
Jan 25, 2010
The problem is that notifyDataSetChanged() is not firing up getView() of listView class.
I have an activity class in which i have Gallery Adapter and custom List Adapter (extending base class and overriding getView). What i want is, if i select any picture from gallery then, the list should get updated (dont worry about the data source now, as i am using static images for gallery and static string array for listview). After getting onClickevent from gallery i am calling notifyDataSetChanged via listView Adapter Context so that getView of listView should be called and i can supply another static string array to change the list, but getView of listView is not being called.
If i call notifyDataSetChanged from onClickEvent of listview, then getView of listView is being called. How shall we use notifyDatasetChanged to update the listview using event from another adapter.
View 3 Replies
View Related
Jul 5, 2009
I'm developing an application wich has a location push service that start at boot. The main responsability of this service is very simple, just inform the location of the phone based on the *requestLocationUpdates* parameters. I don't care if it's using the network or GPS, obviuosly I'd prefer the most accurate one, but if the GPS is turned off, I don't mind to receive the network less accurate location fix. My problem is that the service isn't working as I expect, since I deploy the app on my HTC Magic, and after a lot of miles driving my car, only the first fix is shown, but no one else. Here some snippet of my service (BTW, I've checked with DDMS that the service is launched at boot):
CODE:..................
View 6 Replies
View Related
Nov 22, 2010
I set locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 60000, 0f, this);
It has an odd behavior, locationChanged gets called every second instead of any time close to 1 minute. Secondly, locationChanged gets called every second for like 10 seconds, then stops completely, the gps satalites icon disappears, then only resumes again when the screen returns from display timeout.
what's wrong? I'm currently on android 1.5.
View 1 Replies
View Related
Nov 20, 2009
When I set my HTC Hero to sync with exchange "As Items Arrive", the phone is constantly synching and therefore my battery drains. Even when I turn off the phone, the phone uis still awake since it is constantly checking/sync-ing with exchange. I was under the impression that by selecting this type of sync, the items would be "pushed" to the device rather than the device constantly checking if there are new messages, contacts, or calendar eventsto sync. Is this expceted behaviour, or is there some other tweak I need to do? By the way, I just updatedmy phone yesterdey to the latest firmware, and the issue still persist.
View 2 Replies
View Related
Nov 12, 2010
I have an application that runs in the background, and displays an error message via the notifications system. This notification has a pendingIntent that leads back the the app's main screen. On this main screen, I have set launchmode="singleTask". As I understand it from the Android Dev Guide, this should mean that my main activity will only ever have one instance.However, if the user is viewing that activity at the time (or another one within the app), and goes and touches the notification to clear it, it goes ahead and puts another copy of the activity on the stack, so if I hit the back button, it will return to the main screen again (from the main screen).
View 2 Replies
View Related
Dec 27, 2009
I have a service that gets updated every x minutes depending on the user preferences. This service connects to a web service and pulls some data. If during an update the user has no connection I register my receiver and start listening for changes (ConnectivityManager.CONNECTIVITY_ACTION), the thing is that onReceive () only gets called on every update instead of firing onReceived as soon as I plug the connection back in. Have I understood the concept of Broadcast Receiver wrong? Is it not suppose to send a notification as soon as it detetcs a change in the connection?
View 4 Replies
View Related
Aug 16, 2010
In the android manifest on the first line "" I'm getting an error marker (with a red X). When I mouse over the red x it says- "Manifest attribute 'minSdkVersion' is set to '2.1'. Integer is expected."
View 1 Replies
View Related
Jan 22, 2010
I have a simple LinearLayout with one TextView and one ImageView. I want the text in the TextView to be aligned to the right, but the result show that the Text was aligned to the left.
Is there anything wrong with my layout xml?
CODE:...............
View 6 Replies
View Related
Aug 14, 2010
I have a ListView that just contains a CheckedTextView. I have a very simple CursorAdapter that populates CheckedTextViews. When I click on an item, I can see that I am responding to the correct row, store the value in my model and the CheckedText gets checked. However, when I scroll down and then back up again, while I see that the model contains the correct value (in #bindView), calling #setChecked on the CheckedTextView has no effect. Ie All items are unchecked. Code...
View 9 Replies
View Related
Mar 17, 2010
Help me in resolving the below issue. I have three image buttons on screen. All these three buttons controlled under ontouchlistner as below. My problem is, as it is under multi touch event handler like above, it does not detect when touch all three button at a time to try to produce multi touch effect, instead it detects only one imagebutton touch at a time even though i touch all three image buttons. As i am developing this project on Android 1.6 SDK, is there any problem accessing my requirement(multi touch) (or) it is a known issue? I am hoping that, when it works for single button touch, why shouldn't it work when clicking three imagebuttons at a time to produce three logs printed as per my above code? Code...
View 1 Replies
View Related
Oct 28, 2010
Is there a way to ensure that my Android UI will display as expected across different phones ?
View 3 Replies
View Related
Sep 23, 2010
I have a ListView and an ExpandableListView inside of a TabActivity. I have overridden the setOnItemClickListener for the ListView. I have 2 tabs and one uses the ListView and the other uses the ExpandableListView. For some reason I cannot click on any of the items in the first ListView. If I change tabs to the ExpandableListView and then go back to the first tab it will then allow me to click on the items as usual. Any ideas on why this is happening. Is there some kind of weird focus thing going on? Code...
View 1 Replies
View Related
Sep 16, 2010
I have an Activity which contains a ListView defined in XML (its not subclassing the List Activity class).I want to display a message when the ListView is empty, so I tried doing so with the setEmptyView method: Code...
View 2 Replies
View Related
Oct 19, 2010
I'm requesting data from my server and receive a string in the form of 2|bit.ly|1||1| and | should be the separator. I thought the following piece of code should do the work
BufferedReader br = null; ...
br = new BufferedReader(new InputStreamReader(inputStream)); ...
String line; String[] columns; ContentValues values;
while((line = br.readLine())!=null) { columns = line.split("|"); ...
}
But after the line.split("|"); the columns contains 15 elements instead of expected 6. Taking a closer look at it's content reveals that each character in the string was stored in one array element. The code coming from server isn't encoded in any way in in the example I use only ASCII characters appear.
View 1 Replies
View Related
Sep 14, 2009
I have a listView with custom objects defined by the xml-layout below. I want the textView with id "info" to be ellipsized on a single line, and I've tried using the attributes. Code...
View 4 Replies
View Related
Jul 26, 2010
I am making a time sheet program where a user inputs his in- and out-punches. I have a ListView that I am populating from an array of calendar objects. I would like each row to show the day and date then on a new line the time, but I only want to display the day and date if it is different from the previous element.Currently, I am setting visibility in the Base Adapter based on comparisons using position vs position-1 (which are used as indices to the array). This only works if the whole list fits on the screen. If it extends beyond the screen and the user scrolls around the results are unpredictable.To further confuse things, I am setting the color of the times, based on the position, to alternate between green and red (in/out) and it works as expected, scrolling or not.How does Android handle the ListView position when scrolling or what could I do differently to show/hide the day and date? Code...
View 2 Replies
View Related
Jun 18, 2010
I am trying to create custom background selector for my ExpandableListView. It works fine for all states other than focused. I am unable to identify which row is currently focused. Here is the code...
View 2 Replies
View Related
May 11, 2010
I have created custom list view using class EfficientAdapter extends Base Adapter implements Code...
View 2 Replies
View Related
Nov 9, 2010
I have a layout with a ListView that contains EditText objects that can requestFocus() when the user chooses to edit the list item. I make sure to call setSelection() on the ListView when this happens, and then have the EditText request focus and then use InputMethodManager.showSoftInput to show the soft keyboard. However, when this happens, the list view is being resized correctly, but the selected list item remains below the fold and the user has to scroll up. This is working properly on 2.2, but is failing on 2.1. Any ideas for making sure the list selection remains visible?
View 2 Replies
View Related
Dec 5, 2009
What kind of download speed should I expect with my Droid ERIS? Using my 802.11g wireless router I get around 2mb/sec according to spreedtest.net. I get around 1mb/sec using 3G. My laptop gets around 15mb/s over my 802.11g network. I'm guessing that the difference might be because my laptop has 4gb ram and a dual core and the ERIS doesn't.
View 1 Replies
View Related
Aug 10, 2010
I have come to the conclusion that vzw aborted the ota on the 1st 2.2, and not many people have gotten it. It seems at least on this forum that everyone has 2.2 via a forced update. Very few people have chimed in that they got a ota.However, given that vzw is releasing the droid2 on Thu the 12th, I would think that this is going to have the newest froyo, not the version released ota that everyone forced with. Correct thinking?
If that is also true, then shouldn't we be seing something coming out ota for us 2.1 droid 1 users very shortly? anyone have any dates?
View 38 Replies
View Related
Jun 2, 2010
I've posted a bigger chunk of the code below. You can see that initially QUOTE was procedural- coded in place. I'm trying to learn how to use declarative design so I want to do the same thing but by using resources. It seems like I need to access the string.xml thru the @R.id tag and identify QUOTE with that string value. But I don't know enough to negotiate this.
CODE:.......................
View 1 Replies
View Related
Aug 10, 2010
The following will not register the Toast upon clicking. In fact, it doesn't even seem to detect a click. The parent class that CustomListTitle extends is ListActivity, so everything should be set, but it's not working. No errors, just no registering a click.
import android.app.Activity;
import android.app.ListActivity;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;...................
View 1 Replies
View Related
Jun 26, 2010
I would like to change text and back ground color of my Listview without building custom rows. Is this possible ?
View 1 Replies
View Related
Jun 24, 2009
There must be a way to do this. How can you tell a ListView that has a header to not scroll it when the user scrolls the contents? I want it to stay in a "stuck" position so that the user can always see what column the content applies to.
View 9 Replies
View Related
Sep 9, 2010
In my project i m parsing xml and i want to put it in xml list with in list.
View 24 Replies
View Related
Apr 4, 2012
I have some class LoginActivity.java. In the onCreate method I retrieve ListView:
ListView list = (ListView)findViewById(R.id.snListView); then:
list.setAdapter(adapter);
In addition there are login.xml layout - there are:
<ListView
android:id="@+id/snListView"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
and sn_row.xml:
[Code]...
At the moment I have cell's height 100dp, I need that cell's height will depend on device, I mean I have here 5 cells showing at login screen in ListView and I need that these 5 rows will fit the ListView (cell's height = ListView's height/5).
View 1 Replies
View Related
Nov 9, 2013
I cant sync my google accounts ('sync is currently experiencing problems, it will be back shorly)
Google maps says 'no network connection'
Play store says 'server error'
Gmail says 'waiting for sync, your emails will appear shorly'
Sounds like my internet is broken? ITS NOT. whatsapp and opera mini, web browser is still working 100% and able to connect
I have tried:
turning sync of and on
clear the cache of various google apps
turning the phone off and on
The last action I did before it worked was to uninstall the 'microsoft outlook app'.
View 2 Replies
View Related