• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Recent content by elad2109

  1. E

    Apps horozontal scroll view not accurate

    I have an xml layout with my custom view (bottom horizontal scroll view). In the middle of the view there is a small tirangle showing which is the currently selected box. The user can move these boxes (buttons) with his finger to the right and to the left. However the white small...
  2. E

    Apps Why my items are not redrawn after invoking `invalidateViews()` ?

    Why my items are not redrawn after invoking `invalidateViews()` ? I ask because i try to refresh `listItems` after a bg-thread notify an image rsc was downloaded. But nothing is updated. Only after exiting and re-entering the new icons are drawn. I have an activity with...
  3. E

    Apps what am I missing with `notifyDataSetChanged`?

    I have an activity that draws some icons on the view. It sets a list and listAdapter in `onCreate()`. I have extracted to public method the code that assign the list to my adapter. So that external code, can call the UI thread and assign new list to the adapter and make it notify the...
  4. E

    Apps programming a simple form app

    Hi, I'm trying to write a java code on an Android emulator that will send a string to a web service writen in c#. Android code: HttpPost httppost = new HttpPost("http://192.168.2.1:53811/WinnerSite/WebService.asm/MyMethod try { // Add your data List<namevaluepair>...