[android-developers] Re: android SQLite query

2011-11-19 Thread chripo
the string datatype is called TEXT in sqlite. to setup working tables see http://www.sqlite.org/lang_createtable.html -- christoph polcin www.christoph-polcin.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: dynamic gallery array

2011-11-19 Thread chripo
1. subclass BaseAdapterhttp://developer.android.com/reference/android/widget/BaseAdapter.html - implement getCount, getView 2. subclass AsyncTaskString, Void, Bitmap - load your image in doInBackground, scale it down and cache it to the temporary chache dir - set the image in the

[android-developers] Re: Is it possible that LINK/CALL a class in another package as a library or plug-in?

2011-11-16 Thread chripo
it's possible with the use of the classloader. add this method to your Activity request the plugin information by an custom broadcast. the plugin have to response and submit pluginapk = plugin_context.getPackageCodePath() canonnicalCalssName = plugin1.class.getCanonicalName() use this