Re: Calling web services in android
It depends on what you mean by "web services," but there are many many many threads on this list about that topic. Try searching the list, you will find KSOAP examples (if you mean SOAP), and REST examples, and several discussions about when and where you should use "web services" with a mobile device.
Informacja: 2009-04-10
Czytaj: Re: Calling web services in android
Re: [android-developers] Are there alternate ways to look up user phone number when TelephonyManager returns null?
Not only does this apparently return null in some cases (like you got), it does not have to necessarily return a valid value. I tried your code, and I get a phone number that I *think* is what I was originally assigned when I bought the G1, before my other T-Mobile number could be ported over. So I am not certain this method is reliable in any case.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Are there alternate ways to look up user phone number when TelephonyManager returns null?
Re: [android-developers] Re: Calling web services in android
The same way you might do it in "regular" Java: -- Use HttpURLConnection or HttpClient to retrieve the document [link] [link] -- Use DOM or SAX or the XmlPullParser to parse the document [link]
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Calling web services in android
How to remove the WebView top/left 8-pixel inner margin?
Hello. After some search, even in the WebView and related classes source code, I could not find where the built-in 8-pixel inner margin of a WebView is set. I would like to display a WebView with no inner margin: is it feasible, please? Or am I missing something and there is no top and left inner margin inside a WebView?
Informacja: 2009-04-10
Czytaj: How to remove the WebView top/left 8-pixel inner margin?
Re: [android-developers] Re: More Than One Instance of Application
I ran into this as well. Try adding this to the Activity tag ... android:launchMode="singleTask " Jason Van Anden [link]
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: More Than One Instance of Application
Re: How to determine the amount of characters that will fit into a TextView
I'd say if you know the text you want to put into the TextView, you should be able to measure the text and compare to the size of the TextView... In the API Demos, there is a measure text sample. I'd start there. On Apr 9, 3:11 pm, "nwmotog...@gmail.com" <nwmotog...@gmail.com> wrote:
Informacja: 2009-04-10
Czytaj: Re: How to determine the amount of characters that will fit into a TextView
Losing Data on Reboot
So, I made a mistake and I still had the debug version of my app (from Eclipse) on my phone when I tried to install a signed version. The install failed, but I could no longer access the debug version in Manage Applications to uninstall it. I was at work and couldn't reinstall the debug version in order to uninstall, so I did a complete
Informacja: 2009-04-10
Czytaj: Losing Data on Reboot
Re: Losing Data on Reboot
If it helps at all, I've discovered that this only happens if my bootup service tries to read certain preferences and install an alarm. I've used this process to install several other alarms, but for some reason the latest alarms I've added have been causing me to lose all my preferences on a reboot.
Informacja: 2009-04-10
Czytaj: Re: Losing Data on Reboot
String->Integer Hashmap alternative
Currently, I'm using a hashmap which maps strings to integers. I've read that using a wrapper for a primitive type in a hashmap has extra cost and was wandering if there is an alternative I could use. I've seen sparsearrays in the sdk, but they map ints to objects but I need the opposite. Is there an alternative to hashmap available for this or
Informacja: 2009-04-10
Czytaj: String->Integer Hashmap alternative
Re: String->Integer Hashmap alternative
If you mean you map 'String's to 'int's, then yes, you have some overhead because of the autoboxing of Java, making 'int's into 'Integer's. If your map's keys (in this case Strings) can be any possible String, i would just use a Map<String, Integer>. Depending on how you use this map, you should create a TreeMap or a
Informacja: 2009-04-10
Czytaj: Re: String->Integer Hashmap alternative
Can an Italian company sell apps directly?
Hi, checking the Google Checkout signup process, it seems that only UK and US companies can signup, and so sell apps through Android Market. Is this true? If yes, should a company look for a publisher in UK or US to sell apps? Are there any official plans on when Google will allow companies from
Informacja: 2009-04-10
Czytaj: Can an Italian company sell apps directly?
Re: Black areas during alpha animation on transparent PNGs.. Help !
Here is the screenshot ... I have compared it.. please take a look and someone help me .... [link] this is just a sample.. on my real application due to the colors used, the blackness appears more..
Informacja: 2009-04-10
Czytaj: Re: Black areas during alpha animation on transparent PNGs.. Help !
How to deploy and bundle third party dynamic library
Hi, If the application needs to use a third party dynamically linked library (.so) file, how to package that as bundle?. Can i follow the samples platform library example? The .so file is built with android toolchain. Will that work even if i have no source code.
Informacja: 2009-04-10
Czytaj: How to deploy and bundle third party dynamic library
Re: [android-developers] How to deploy and bundle third party dynamic library
Questions regarding using the Android source code are best asked on a discussion list pertaining to the Android source code: [link]
Informacja: 2009-04-10
Czytaj: Re: [android-developers] How to deploy and bundle third party dynamic library
Facebook ma 200 milionów użytkowników !
Facebook przekroczył 200 milionów użytkowników!! Przyznam, że ten fenomen zaczyna mnie fascynować. Nigdy wcześniej w internecie nie było chyba serwisu o takiej dynamice wzrostu (100 milionów w 8 miesięcy!) przy tak dużej skali i zakładam, że szybko taki nie powstanie. To co jest naprawdę niesamowite w Facebook to jego elastyczność i szybkość adaptacji do nowych warunków, nowych trendów czy też wymagań użytkowników. We will welcome our 200 millionth active user to Facebook some time today, an
Informacja: 2009-04-10
Czytaj: Facebook ma 200 milionów użytkowników !
Re: [android-developers] sample source code for beginner
You are probably not stupid. There are hundreds of blog posts and anddev.org boards with sample source code. It requires a bit of searching to find what you want, though. There are many open source Android projects on code.google.com and github.com. There are several books on Android, at least some of which have their
Informacja: 2009-04-10
Czytaj: Re: [android-developers] sample source code for beginner
Re: [android-developers] API Demos APK not running.
You may get better answers to your Android porting questions on a discussion list dedicated to Android porting: [link]
Informacja: 2009-04-10
Czytaj: Re: [android-developers] API Demos APK not running.
How to determine the amount of characters that will fit into a TextView
I am trying to place only the exact amount of data into a TextView but I need to know how much it can hold. Is there a way to do this based on it's height, width and the textsize?
Informacja: 2009-04-10
Czytaj: How to determine the amount of characters that will fit into a TextView
Re: [android-developers] Stopping all services..
IMHO, that would be a rather significant security issue.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Stopping all services..
Re: [android-developers] More Than One Instance of Application
It brings the currently running instance to the foreground. -- Dianne Hackborn Android framework engineer hack...@android.com Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and
Informacja: 2009-04-10
Czytaj: Re: [android-developers] More Than One Instance of Application
Re: [android-developers] Re: Exception locking surface - lockCanvas() returns a null?
If you want to use the standard 2d APIs, don't use OpenGL. -- Dianne Hackborn Android framework engineer hack...@android.com Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Exception locking surface - lockCanvas() returns a null?
Re: Permissions to install other apps...
Would not it be somewhat dangerous to allow apps is /data/app folder to install other applications?? An app can just create an infinite loop in which downloads applications which do not require any permission and keep on installing them and fill out the memory space? Birjodh
Informacja: 2009-04-10
Czytaj: Re: Permissions to install other apps...
Re: [android-developers] Re: Permissions to install other apps...
That's why apps can't install other apps without the user being involved. I was addressing the first part of the original poster's request, being able to download and run Dalvik code in your own process. In that case the new API will let you do this, though of course you are running the other code as
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Permissions to install other apps...
Re: ListView row not receiving highlight with ImageButton in row
Ok I can see setting it to non-focusable 'solves' the problem but that's not really what I was hoping to do. Well, too bad, the user can't focus but only tap now.
Informacja: 2009-04-10
Czytaj: Re: ListView row not receiving highlight with ImageButton in row
Re: problems with bitmaps
There's been a number of threads on this issue, the BitmapFactory tends to throw this out of memory errors when it really shouldn't, looks like a bug or memory leak. I'm not sure if it's cataloged as an official bug though. Using bitmap.recycle(), and reducing the sample size will mitigate , but not eliminate the problem. Also try reducing
Informacja: 2009-04-10
Czytaj: Re: problems with bitmaps
Animation on a view doesn't 'stick' in reality
Hi I'm using a TranslateAnimation to slide a ViewGroup in and out of screen. However after the animation slides the view out, the transparent view is still 'clickable' in the same place. I used setFillAfter to TRUE thinking that the animation would 'stick' but I can't seem to get the view out of my 'face'.
Informacja: 2009-04-10
Czytaj: Animation on a view doesn't 'stick' in reality
Re: [android-developers] Animation on a view doesn't 'stick' in reality
Yes and no. No because you still need to hide the view yourself. Yes because you can just do this: myView.startAnimation(myAnimat ion); myView.setVisibility(View.INVI SIBLE); // or GONE Android will hide the View and run the animation but still draw the View as long as the animation is running.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Animation on a view doesn't 'stick' in reality
Re: Stopping all services..
I see your point and definitely agree. I would really like to see a sleep timer function for the music player though and don't think I would be able to write a whole music player application that could compete with the others out there...
Informacja: 2009-04-10
Czytaj: Re: Stopping all services..
new NTP client tools on the Android Market
For those of you dealing with time data on the Android - or just want to see an NTP client work, check out the application I just published. It's free of course, and it's called "Navy Clock" It displays local time of the phone, the UTC time of the phone, and the time read from the US Naval Observatory in Washington DC.
Informacja: 2009-04-10
Czytaj: new NTP client tools on the Android Market
Re: [android-developers] Re: problems with bitmaps
If you have a reproducible test case, head over to [link] and make it official.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: problems with bitmaps
Re: [android-developers] Re: Stopping all services..
Well, the built-in music player is open source: [link] In principle, you could make a sleep-timer patch and submit it: [link] Admittedly, there is a learning curve for making changes to the source code, more so than with many open source projects, due to the unusual
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Stopping all services..
speech bubble like in Google Maps
I'm coding an application wich uses the map. The map shows moving Objects. The direction in which objects are move should be(displayed as arrow) the object-image. so i startet with the implementation of the map view. How can i create objects on the map, which (after klicking on them) are able to show their names and also that specific arrows to jump to
Informacja: 2009-04-10
Czytaj: speech bubble like in Google Maps
Re: [android-developers] Re: list of request codes - their names and values?
That should be in your preferences, though. After all, you're the one asking for the ringtone via the RingtonePreference, right? Just open up your SharedPreferences (PreferenceManager.getDefaultS haredPreferences()) and read out the value. Or use Preference.OnPreferenceChangeL istener to be notified when
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: list of request codes - their names and values?
Re: Animation on a view doesn't 'stick' in reality
Okay I've figured it out. I would personally consider this a bug but not sure if this is how it's meant to be. Basically in onAnimationEnd I had to loop over all children inside the viewgroup (and children of children) and set their visibility to GONE/ INVISIBLE and the buttons stopped getting touch events after animation
Informacja: 2009-04-10
Czytaj: Re: Animation on a view doesn't 'stick' in reality
Re: CONTROL_LOCATION_UPDATES permission failure
Hello Richard, Thanks very much. This is very helpful. I am using the same SDK version but in this case I was not using the SDK. I had been experimenting with LocationListener too. I had been using onLocationChanged. Again, Thanks. Alex Donnini On Apr 9, 7:32 pm, Richard Schilling <richard.rootwirel...@gmail.co m>
Informacja: 2009-04-10
Czytaj: Re: CONTROL_LOCATION_UPDATES permission failure
android.permission.GET_ACCOUNTS
Are there any examples of how to use android.permission.GET_ACCOUNT S ? Or is this an unimplimented api? I found this site; [link] Though I haven't been able to get anything to work. I believe JBQ said it was a private api - but I'm not sure why the permission is listed
Informacja: 2009-04-10
Czytaj: android.permission.GET_ACCOUNTS
Re: [android-developers] android.permission.GET_ACCOUNTS
We unfortunately left most of the permission string constants in the SDK, even for ones protecting private APIs. So something being there doesn't mean there is an API for it. -- Dianne Hackborn Android framework engineer hack...@android.com Note: please don't send private questions to me, as I don't have time to
Informacja: 2009-04-10
Czytaj: Re: [android-developers] android.permission.GET_ACCOUNTS
Re: ListView not touchable in my Activity
I don't see any itemClickListener registered ?
Informacja: 2009-04-10
Czytaj: Re: ListView not touchable in my Activity
no root access.. how to put file...
I am not able to understand one simple issue.. if there is no root access to file system even to the user who owns the phone then why on earth would the dev guide include commands like adb push <local> sdcard .... when the sdcard of emulator is read only.. Is this some kind of mockery or sarcasm with the users?????
Informacja: 2009-04-10
Czytaj: no root access.. how to put file...
Conversion to Dalvik format failed with error
Hi to all.... I include JMF in my application. When i run my application the following type of error will occurring... [2009-04-09 16:20:03 - nithin] trouble processing "javax/sound/midi/ControllerEv entListener.class": [2009-04-09 16:20:03 - nithin] Attempt to include a core VM class in something other than a core
Informacja: 2009-04-10
Czytaj: Conversion to Dalvik format failed with error
JavaMediaFramework
HI to all..... Is it possible to include JavaMediaFramework for android application....
Informacja: 2009-04-10
Czytaj: JavaMediaFramework
Re: [android-developers] Conversion to Dalvik format failed with error
You cannot use Java MediaFramework with Android. -- Romain Guy Android framework engineer romain...@android.com Note: please don't send private questions to me, as I don't have time to provide private support. All such questions should be posted on public forums, where I and others can see and answer them
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Conversion to Dalvik format failed with error
Re: When will google post official cupcake SDK
When is Google planning on distributing an SDK that does not have such a bug?
Informacja: 2009-04-10
Czytaj: Re: When will google post official cupcake SDK
Live Video streaming
HI to all Can anyone knows how Live Video streaming can be done Thanks in advance Nithin N V
Informacja: 2009-04-10
Czytaj: Live Video streaming
showing graph in Application
Hello I want to display graph(time ver distance) in Activity , how should be this achieved in Android. is there any tut available? Thank you
Informacja: 2009-04-10
Czytaj: showing graph in Application
RE: [android-developers] Re: When will google post official cupcake SDK
When the fix is in the open source repo I'll roll some new SDKs. As for a date for a Google originated SDK, there's no solid commitment to a date as yet. Al. --- * Written an Android App? - List it at [link] * ====== Funky Android Limited is registered in England & Wales with the
Informacja: 2009-04-10
Czytaj: RE: [android-developers] Re: When will google post official cupcake SDK
Re: [android-developers] Re: Conversion to Dalvik format failed with error
Hi.... I tried in SDK emulator. Even i have Same problem like yours. Till now i didnt run video on emulator.... Thank You Nithin N V
Informacja: 2009-04-10
Czytaj: Re: [android-developers] Re: Conversion to Dalvik format failed with error
Re: [android-developers] no root access.. how to put file...
Yes, we hate you, and laugh at every pain we can cause. Plus the sdcard provides world read/write access.
Informacja: 2009-04-10
Czytaj: Re: [android-developers] no root access.. how to put file...
Are there alternate ways to look up user phone number when TelephonyManager returns null?
Is there a way to look up the user phone number other than TelephonyManager? In my G1, this returns null: // get your phone number TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEP HONY_SERVICE); String tel = telephonyManager.getLine1Numbe r();
Informacja: 2009-04-10
Czytaj: Are there alternate ways to look up user phone number when TelephonyManager returns null?
Android jako niańka do dziecka
Autor wpisu: Janek , tekst pochodzi ze strony: SimBlog.pl Paweł pisał jakiś czas temu o podobnej aplikacji na Symbiana. Generalnie chodzi o to, że kiedy hałas w otoczeniu osiąga pewną granicę (zdefiniowaną przez nas w decybelach), komórka wykona połączenie na ustawiony numer. Szczerze mówiąc nie widzę innego sensownego zastosowania niż nasłuchiwanie czy dziecko śpi. Ale czy HTC G1 - jedyny telefon z Androidem - nie jest zbyt fajną zabawką, żeby zostawić ją dziecku? Do pobrania tu
Informacja: 2009-04-10
Czytaj: Android jako niańka do dziecka
Software Developerâs Journal - Kwiecie
Kolejny numer Software Developer
Informacja: 2009-04-10
Czytaj: Software Developerâs Journal - Kwiecie
How to add a close button on a WebView
I am invoking a simple WebView going through my own WebViewClient. I want to add a very simple close button so, it goes back to the activity. If I invoke the Webview as a sub activity, it is going back to the parent activity properly. But, in my case I just have simple webview for example (click here for more info) which has a web link that opens
Informacja: 2009-04-10
Czytaj: How to add a close button on a WebView
why ADT can not show the preference dialog in ubuntu
In the properties view of ADT Layout Editor, ImageView have a background property, there is a more button with text "..." in value column,when click it will show me a reference dialog to select a resource int windows ,but int ubuntu there nothing happen. My env is ubuntu 8.10 ,eclipse 3.4 and ADT 0.8
Informacja: 2009-04-10
Czytaj: why ADT can not show the preference dialog in ubuntu
How to change the background color of an element in a list ?
Hi everybody, I've an activity that extends ListActivity. I do a kind of check on all elements of the list and if an element corresponds to my criteria, I would like to put the background of this element in green (by example) or to add any visual effect on this element. How can I modify the background of this element ?
Informacja: 2009-04-10
Czytaj: How to change the background color of an element in a list ?
Re: [android-beginners] How to change the background color of an element in a list ?
You will need to make some changes to your Adapter to accomplish this. If it is ArrayAdapter, you will probably want to override getView(). I have a long series of dated, poorly-formatted blog posts on this: [link] If it is SimpleCursorAdapter, you can either override bindView() or
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] How to change the background color of an element in a list ?
Re: How to change the background color of an element in a list ?
Thank you for the informations! It seems to be good hints to start :)
Informacja: 2009-04-10
Czytaj: Re: How to change the background color of an element in a list ?
Today New Posting at funfashion4u
Skeletons <[link]> Werewolf <[link]> Under Water Super Market<[link]> Under Water Phone Call<[link]>
Informacja: 2009-04-10
Czytaj: Today New Posting at funfashion4u
how to connect Android with Sqlite3.
Dear Group, Actually i m working in an Android application on which i want to connect the Android with Sqlite3.0.i wrote the code for connecting that one,but not connected,plz help me....
Informacja: 2009-04-10
Czytaj: how to connect Android with Sqlite3.
How to use a Handler to launch a Toast (or a dialog) from a thread ?
Hi everybody, I do not understand well the concept behind the Handler. I want to launch a Toaster (or a dialogActivity) from a thread, to be displayed in the main UI of my application. Here is my code: // IN MY ACTIVITY : Handler handler = new Handler(); Thread thread = new SmsishingUtils(this,
Informacja: 2009-04-10
Czytaj: How to use a Handler to launch a Toast (or a dialog) from a thread ?
progressDialog
Hi everybody I am having a problem displayin a ProgressDialog. I hope someone can show me what I am doing wrong... void doStuff() { myProgressDialog = ProgressDialog.show(layout.get Context(),"Please wait...", "Downloading content...", true); /* Here I do my stuff */ myProgressDialog.dismiss();
Informacja: 2009-04-10
Czytaj: progressDialog
Re: [android-beginners] progressDialog
If i understand correctly, you're showing it and closing it in the same thread and in the same method... That seem wrong to me in event driven development. I would have a piloting thread (like the one which instantiate your activity) that launch your long process IN ANOTHER THREAD, and create the
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] progressDialog
Handing incoming calls
Hi, I'm having issues using the android.intent.action.ANSWER Intent. From what I understand in the reference documentation, it's an Activity Action, not a Broadcast Action. This means that I can't "wake up" my app by setting a intent-filter on it, it means I can send the intent to ask android to answer an incoming call. But... since an incoming call makes
Informacja: 2009-04-10
Czytaj: Handing incoming calls
Re: How to destroy an Activity in android
hi, as per mark told you use the finish() method to end the activity. when you finish() the activity the onDestroy() will get called. I hope your don the onCreat() and OnDestroy() methods well.
Informacja: 2009-04-10
Czytaj: Re: How to destroy an Activity in android
How to determine where a CheckedTextView is 'clicked'
Hello, I want to know if a user has selected the text portion or the check box graphic portion of a CheckedTextView. I want different behaviour depending on where they select. If they click on the text then I want to edit the underlying object and if they select the check box then I want to close off the object.
Informacja: 2009-04-10
Czytaj: How to determine where a CheckedTextView is 'clicked'
Restoring the active Activity while resuming the application
Hello all, I have two activities running: MainActivity and ChildActivity. Whenever the user clicks in the button in MainActivity, the ChildActivity is launched. What I want to do is this: When the active activity is the ChildActivity and the user clicks the home button then relaunch the application (like opening from the
Informacja: 2009-04-10
Czytaj: Restoring the active Activity while resuming the application
Scrolling TextView without the dimming effect?
When scrolling in a TextView it has an annoying effect that dims the background while scrolling (touch scrolling). This makes the text very hard to read and difficult for the user to know when to stop scrolling. See RoboTop application in the market to see what I mean. I'm not sure what is causing the dimming effect or how to disable it.
Informacja: 2009-04-10
Czytaj: Scrolling TextView without the dimming effect?
Re: [android-beginners] how to connect Android with Sqlite3.
haiii i will send some code for go thro in that and make the one object of that one in u r activity class and use this... import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLite Database;
Informacja: 2009-04-10
Czytaj: Re: [android-beginners] how to connect Android with Sqlite3.
Using GDATA from within Android for calendar access?
Hi, I'm really just a beginner and fiddling a little bit around with java and my G1. I'd like to create a calendar event from the phone and learned, that there is no Android API for the calendar. I thought it should be possible to access the google calendar via web. I googled a bit and found some code to try. If I start it as a java
Informacja: 2009-04-10
Czytaj: Using GDATA from within Android for calendar access?
Restoring the active Activity while resuming the application - sent again
Hello all, I have two activities running: MainActivity and ChildActivity. Whenever the user clicks in the button in MainActivity, the ChildActivity is launched. What I want to do is this: When the active activity is the ChildActivity and the user clicks the home button then relaunch the application (like opening from the
Informacja: 2009-04-10
Czytaj: Restoring the active Activity while resuming the application - sent again
Re: Change the location of the tab in a TabLayout
Bump! Is there a way to do this? This would be incredibly useful when having a tab layout in horizontal screen orientation. The tabs themselves take up a lot of vertical screen space...
Informacja: 2009-04-10
Czytaj: Re: Change the location of the tab in a TabLayout
How to: (new) HTTP API
I've read a lot of tutorials explaining how to use the HTTP Client from the previous Android SDK. With SDK 1.1 r1 this API has totally changed. Is there any tutorial for this new API? Is it possible to interact with a J EE application? I mean, on the one side there is the J EE Application on the Internet, on the other side
Informacja: 2009-04-10
Czytaj: How to: (new) HTTP API
Multicast problem
Hi, I'm trying to develop an application that need to send UDP Multicast packets to the local network. There is a few equipments that respond to this packets and send back some informations. I'm not worried with the server right now, because there is a server on the same network that collect all this multicast data.
Informacja: 2009-04-10
Czytaj: Multicast problem
Seeking shipping info for dew phone to Australia
Thinking of purchasing an Android Dev Phone, but can't find any info of the price of shipping to Australia. Not wishing to pay $US25 to join the market place just to find pricing I've been searching the web and discussing it on the local Linux User Group mailing list. So far I've found a couple of posts about Sinapore and the UK on this mailing list
Informacja: 2009-04-10
Czytaj: Seeking shipping info for dew phone to Australia
Subclassed ImageView does not draw in Gallery View
I am subclassing the ImageView class and adding to the Gallery View. But, nothing seems to get drawn in the expected location; though I can fling through the Gallery list. I added an image from a resource, and it shows up correctly in the Gallery. Any idea on why this may be happening? Here is the code I am using:
Informacja: 2009-04-10
Czytaj: Subclassed ImageView does not draw in Gallery View
MVC model state change requires creating an Intent?
Hi, I have a main activity class that launches a couple of my subordinate activities from a tabHost. Periodically (actually when I receive an incoming message on a socket), I want to inform the subordinate activities that application state has changed so that they can refresh their views.
Informacja: 2009-04-10
Czytaj: MVC model state change requires creating an Intent?