Re: [android-developers] How to draw a Bitmap Image?....

2009-12-01 Thread sathya subbiah
Hi, Pls find the code snippet below mButtonImage = BitmapFactory.decodeResource(getResources(),com.android.internal.R.drawable.tt_player_icon); canvas.drawBitmap(mButtonImage, BUTTON_X_POS,BUTTON_Y_POS, null); In case of resizing bitmap use matrix. On Wed, Dec 2, 2009 at 12:24 AM,

Re: [android-developers] How to draw a border like each row in a list view

2009-12-01 Thread Mark Murphy
Hi, Between each row in list view, android draw a horizontal line (fades away at both ends). If I have a LinearLayout view, how can i add a border like that? Add a 1px high View with a suitable background color or gradient in between each of your other widgets in the LinearLayout. --

Re: [android-developers] How to draw a Bitmap Image?....

2009-12-01 Thread Sasikumar.S
Hi, Thank u sathya. Its working fine. Now i need , I want to create a bitmap array. I want to create a button. When i click that button, the bitmap array should create a bitmap image. Note: only one bitmap image(sample.png)... when i click the button it should create the same

[android-developers] Re: Building cupcake for G1

2009-12-01 Thread Bytes
Hi Thanks for the link. But after checking out the code I couldn't found 'vendor' folder. I've downloaded the code using the tag 'cupcake-release' repo init -u git://android.git.kernel.org/platform/manifest.git -b cupcake-release repo sync regards -Bytes On Dec 1, 9:08 pm, Charlie Collins

Re: [android-developers] How to draw a Bitmap Image?....

2009-12-01 Thread SoftwareForMe.com SoftwareForMe.com
I'm sure people would be happy to help, but your question is not clear. Can you explain more fully? Why do you want multiple copies of the same image? SoftwareForMe.com Makers of PhoneMyPC Imagine Multitouch On Tue, Dec 1, 2009 at 9:58 PM, Sasikumar.S sasikumar.it1...@gmail.comwrote: Hi,

Re: [android-developers] How to draw a Bitmap Image?....

2009-12-01 Thread Sasikumar.S
Hi, think u r creating a snake game. In that one bitmap[0](1.png) image is there. If the bitmap[0](1.png) touches the another bitmap(2.png). Suddenly it will create one more bitmap[1](1.png). Like that i need... On Wed, Dec 2, 2009 at 1:08 PM, SoftwareForMe.com SoftwareForMe.com

[android-developers] How to extract the .properties files in a third party jar file to apk file

2009-12-01 Thread nowingfly
Hi All, I have an app with some 3rd-party jar references. When building in Eclipse, those .properties files in the jars are included in the generated apk with the help of ADT plugins. And the structure of the apk would look like as below: | |---javax | |---servlet |

[android-developers] Importing in aidl file

2009-12-01 Thread yidongsoft
I need a aidl file defining: ArrayListFoo getFoo(); I import ArrayList package and Foo with import java.util.ArrayList; import com.xyz.fooPackage; But eclipse keeps saying that can't find the importing class. Would anybody help me? Thank you! -- You received this message because you are

<    1   2   3