Re: [android-developers] Confused about background images

2012-02-01 Thread Monzurul Islam Shamim
- *xlarge* screens are at least 960dp x 720dp - *large* screens are at least 640dp x 480dp - *normal* screens are at least 470dp x 320dp - *small* screens are at least 426dp x 320dp http://developer.android.com/guide/practices/screens_support.html I think this will help you.. On

[android-developers] AutoCompleteTextView data binding problem

2011-09-16 Thread Monzurul Islam Shamim
Hi, I have following two arrays and I want to bind them to a AutoCompleteTextView. My problem is when type on the textview it filters the nameArr and I lost the correct index in the idArr. How do I bind idArr to the view? String idArr[] = new String[]{1,2,3}; String nameArr[] = new

Re: [android-developers] horizontal listview at runtime

2011-09-15 Thread Monzurul Islam Shamim
to make one below another you can wrap both by a vertical layout..I think you already tried it...if so then where is the problem. On Thu, Sep 15, 2011 at 4:35 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi friends, I have horizontal listview, i want to have the whole horizontal listview

Re: [android-developers] horizontal listview at runtime

2011-09-15 Thread Monzurul Islam Shamim
yes On Thu, Sep 15, 2011 at 5:02 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi, I have wrapped both one below the other in vertical layout.But still its not happening.Do u want me to send you the code? On Thu, Sep 15, 2011 at 4:14 PM, Monzurul Islam Shamim monzur...@gmail.com wrote

Re: [android-developers] Re: XML files and SQLITE Database

2011-09-14 Thread Monzurul Islam Shamim
Bishan, you can google 'android sqlite example'...you'll get many working example codesmight help you. Thanks. -Shamim On Wed, Sep 14, 2011 at 3:03 PM, skink psk...@gmail.com wrote: Bishan wrote: k. i got it skink. i know how to read XML. but the problem is how could i insert

Re: [android-developers] How to encode the integer(30digit in to 10 digit) and decode it

2011-09-14 Thread Monzurul Islam Shamim
it is not possible to compress 30 digits into 10 digits...but may be 30 digits into 10 bytes is possible using any compression algorithm like huffman.. On Wed, Sep 14, 2011 at 2:38 PM, GopalaKrishnan D gopall...@gmail.comwrote: How to encode the integer(30digit in to 10 digit) and decode it

Re: [android-developers] How can I can open local files in the default Android browser?

2011-09-13 Thread Monzurul Islam Shamim
use 10.0.2.2 to access you local system. On Tue, Sep 13, 2011 at 4:43 PM, venugopal reddy venugopal.re...@tspl.comwrote: Hi guys please help me below problem How can I can open local files in the default Android browser? I mean Just I Want to open one HTML file it is stored in my local

[android-developers] sqlite date filter

2011-02-28 Thread Monzurul Islam Shamim
Hi, Can anyone tell what is wrong in following query, Cursor cr = db.rawQuery(SELECT _id FROM t1 WHERE creation_date = ? , new String[]{1-2-2011}); It always returns empty result. Even though in 't1' table there are data for 'creation_date=1-2-2011'. -Shamim -- You received this message

Re: [android-developers] Getting Exception while creating..?

2011-02-24 Thread Monzurul Islam Shamim
Use INTEGER instead of INT and TEXT instead of VARCHAR...I think this will resolve your error... On Wed, Feb 23, 2011 at 9:35 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: I used like that, but i am getting exception.../? myDB.execSQL(CREATE TABLE IF NOT EXISTS bikes_list(_id