[android-developers] Touch State Highlighting

2011-04-29 Thread argongold
before changing back to original one. Please note for each list item background, I have its corresponding highlight image. which means if I have 7 background images then I have 7 highlight images too. Thanks in advance, Regards, argongold -- You received this message because you are subscribed to

[android-developers] Re: Layout mismatch between AVD and actual Device

2011-04-19 Thread argongold
Note: The overlapping is between the gridview and ovalShapes and not the ovalShapes iteself as they are designed to overlap. On Apr 20, 10:56 am, argongold wrote: > Hi, > I have a device (Mini MID) with  lcd screen size of 4.3" and > resolution  480X272 while its lcd density sc

[android-developers] Layout mismatch between AVD and actual Device

2011-04-19 Thread argongold
Hi, I have a device (Mini MID) with lcd screen size of 4.3" and resolution 480X272 while its lcd density scale I captured with following code below is 0.87500 which means the lcd density is 140 for this device. final float scale = getBaseContext().getResources().getDisplayMetrics().density; I

[android-developers] Re: adb devices returns an empty list

2011-04-04 Thread argongold
uld provide by far more details. I.e. from where > comes > your platform, do you have the platform code, is the adbd started by > init.d, > can you see adbd using ps on the device and so on ? > > Maybe your platform has no adb support ? > > Good luck !  Frank > > On 4 A

[android-developers] adb devices returns an empty list

2011-04-03 Thread argongold
Hi, I've a mini MID device and I am trying to use it for development/ debugging purpose. But after all the setting steps( see below) . I am still not able to get device listed when I issue 'adb devices' command. Things I have done as follows: 1. enable USB debugging on the device under Settings->

[android-developers] Re: BubbleTextView.java from launcher package

2011-03-22 Thread argongold
22, 11:13 am, argongold wrote: > > > Hi, > > > I want to format my text for shortcuts as done in launcher > > application.  I've tried to copy "BubbleTextView.java" class directly > > to my sdk project. but following parameters couldn't resolved >

[android-developers] BubbleTextView.java from launcher package

2011-03-22 Thread argongold
Hi, I want to format my text for shortcuts as done in launcher application. I've tried to copy "BubbleTextView.java" class directly to my sdk project. but following parameters couldn't resolved "mLeft","mRight","mTop","mBottom" and I could find in launcher package where these parameters are initi

[android-developers] How to receive a Notification for a new installed application

2011-03-19 Thread argongold
Hi, My application keep a data base for currently installed application on device and I want to update this database once a new application is installed. How I should listen for this event? Regards, argongold -- You received this message because you are subscribed to the Google Groups "An

[android-developers] Custom GridView becomes Scroll-less

2011-03-16 Thread argongold
Hi, I have extended a GridView and Override onTouchEven() function to achieve onTouch and onLongTouch functionality for GridView items. But I found the extended GridView is no longer scrollable when I fling it or try to move up or down. Suppose it should keep is scroll functionality if I don't Ov

[android-developers] Re: drag and drop view in android?

2011-03-15 Thread argongold
This set of classes (drag & drop) in Launcher also use some Private API's and you can not compile them under your android SDK. argongold On Mar 15, 11:04 am, 曾少彬 wrote: > You can referer to /packages/apps/Launcher, there is a set of > classes to support drag & drop. >

[android-developers] Re: About vertical Cover flow

2011-03-15 Thread argongold
for a smooth interpolation of angles and implement in getChildStaticTransformation() . Regards, argongold On Mar 15, 6:47 pm, Soumen Debnath wrote: > Hello can any one help me with this topic Cover flow topic? > > On Tue, Mar 15, 2011 at 3:38 PM, Soumen Debnath > > wrote: &g

[android-developers] Widgets installed by default on Home Screen

2011-03-08 Thread argongold
display them by itself without user intervention and how? Regards, argongold -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this g

[android-developers] Re: Status Bar appears again

2011-03-01 Thread argongold
Will any one give response from google android team? On Mar 1, 5:09 pm, argongold wrote: > Hi, > > I am developing a Home Screen and I have set the following attributes > in AndroidManifest.xml > android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen" &

[android-developers] Status Bar appears again

2011-03-01 Thread argongold
other application by touching corresponding application icon and it (my application) goes to background, the status bar appears when it returns to foreground stays there. Why it would have such characteristics even though I've explicitly set above attributes. Thanks in advance Regards, argon

[android-developers] Re: How to resize an icon at run time to achieve specific size

2011-02-28 Thread argongold
Hi Guys, I've found the solution and in case you guys are interested the following code will do the work for icon resize. Regards, argongold -- public Drawable scaleIcon(Drawable mIcon){ int width = mIcon.getMinimumWidth(); int height = mIcon.getMinimumH

[android-developers] How to resize an icon at run time to achieve specific size

2011-02-27 Thread argongold
Hello, I am working on an android application for which I need to get specific size of icons as I am displaying on smaller scale. Is there a straight forward way to resize/scale an icon to achieve its specific size. Kind regards, argongold -- You received this message because you are

[android-developers] Finding Specific Installed Applications at Run Time

2011-02-25 Thread argongold
;s Language is set to other language such as "Chinese" the run time title string comparison fails for all the strings defined above in string array. Is there a better way , which is not language dependent to get the specific applications . I haven't tried using the full package na

[android-developers] Protecting copyright of my android application

2011-02-23 Thread argongold
turer has produced more than the agreed limit (Devices). I'd like to get your suggestion , if you guys already using a software strategy to keep track of number of devices it is being installed . Thanks for your reply in advance argongold -- You received this message because you are subscri

[android-developers] Re: Question about android.view.WindowManagerImpl

2011-01-27 Thread argongold
Hi Treking, Thanks for your suggestion. Definitely one way is to write my own but I don't want to re-invent the wheel so checking if any one have already spent time and invented it (*_*). Thanks argongold On Jan 28, 11:47 am, TreKing wrote: > On Thu, Jan 27, 2011 at 9:37 AM, ar

[android-developers] Re: Question about android.view.WindowManagerImpl

2011-01-27 Thread argongold
use it. Can any > one suggest some work around for it. > > Thanks in advance. > argongold -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsub

[android-developers] Re: getHitRect() returns hit to a different image item in a Customize List

2011-01-22 Thread argongold
Hi Hari Edo, Thanks for your suggestion and finally I managed to adjust the size of getHitRect() in accordance with z-distance and I get precise hit from corresponding image. Regards, argongold On Jan 21, 12:52 am, Streets Of Boston wrote: > I'm not sure if this would help, but you co

[android-developers] Re: Android Development Income Tax Question

2011-01-21 Thread argongold
perty taxes etc. which means the individuals (Kuwaiti or expatriates) and Kuwaiti companies are not subject to income tax. Note. I don't live there either . Thanks argongold On Jan 22, 9:09 am, fadden wrote: > On Jan 21, 9:17 am, TreKing wrote: > > > Thanks. You know what, I&#x

[android-developers] extended AbsSpinner class work fine in Eclips+SDK but gets error message when compiled in AOSP

2011-01-21 Thread argongold
common/obj/APPS/CardList_intermediates/classes- full-debug.jar] Error 41 make: Leaving directory `/home/project/froyo' Thanks in advance and looking forward to get your response Regards, argongold -- You received this message because y

[android-developers] getHitRect() returns hit to a different image item in a Customize List

2011-01-19 Thread argongold
, argongold -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more opti

[android-developers] Windows Manager (New Look & INTERFACE) for Android

2010-06-15 Thread argongold
to be done ? Is any one out there tried such endeavor ? argongold -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send e