[android-beginners] Re: Gradient Image

2010-01-29 Thread MobDev
I'd like to use Images (so this image does include a gradient but also several other elements like pre-rendered text but also a complex mix of vertical and radial gradients) so using only LinearGradient or RadialGradient wont work... I am just astounded by the fact that such an png-image (with

[android-beginners] Notification helf

2010-01-29 Thread Chirayu Dalwadi
Help on notification of android is required. Please help me out -- Warm Regards, Chirayu Dalwadi Cell Number: +91-997-470-4341 Email: chirayu.dalw...@gmail.com Profile: http://www.google.com/profiles/chirayu.dalwadi Pain is temporary. Quitting lasts forever. -- Lance Armstrong -- You

Re: [android-beginners] Notification helf

2010-01-29 Thread Sean Hodges
On Fri, Jan 29, 2010 at 10:38 AM, Chirayu Dalwadi chirayu.dalw...@gmail.com wrote:  Help on notification of android is required. Please help me out -- Warm Regards, Chirayu Dalwadi What is the problem you're having? -- You received this message because you are subscribed to the Google

Re: [android-beginners] Notification helf

2010-01-29 Thread Chirayu Dalwadi
I dont know how to use NotifyWithText. I need a code, that will help in implementing it On Fri, Jan 29, 2010 at 4:12 PM, Sean Hodges seanhodge...@googlemail.comwrote: On Fri, Jan 29, 2010 at 10:38 AM, Chirayu Dalwadi chirayu.dalw...@gmail.com wrote: Help on notification of android is

Re: [android-beginners] Spacing inbetween Views

2010-01-29 Thread Mark Murphy
Hi, I have been using several types of views (TextView, ImageView, ImageButton etc) and those are being placed one under the other... I would like to know how I can increase the empty spacing inbetween those elements ? I have read enough about padding but that seems to be the spacing

Re: [android-beginners] Notification helf

2010-01-29 Thread Sean Hodges
On Fri, Jan 29, 2010 at 10:49 AM, Chirayu Dalwadi chirayu.dalw...@gmail.com wrote: I dont know how to use NotifyWithText. I need a code, that will help in implementing it What is NotifyWithText? I've never heard of it before, is it part of the Android SDK? -- You received this message

Re: [android-beginners] Eclipse can't seem to locate R.java

2010-01-29 Thread Murilo Braga
i just had to clean my android project in eclipse and it`s back to normal. try that On Fri, Jan 29, 2010 at 6:09 AM, Temitope Akinwande takinwa...@gmail.comwrote: This might be good information to check out. I haven't tried it myself as I have always used the ADT plugin.

Re: [android-beginners] Re: How can I add a transparent scalable marker on Google map?

2010-01-29 Thread TreKing
On Thu, Jan 28, 2010 at 10:58 PM, mapper sai.vaiku...@gmail.com wrote: Yes Kevin is right. I want the bubble/dialog which can show the information about that marker and two images to go another Activity. In that case you don't want to be showing a dialog, though I'm not sure why your code

[android-beginners] Proportion of userbase by Android version?

2010-01-29 Thread DulcetTone
Where can one find a pie chart showing how many Android users are running (say): 1.5 vs 1.6 vs 2.x ? The same by phone model would be interesting as well, as might forecasts for the Android SDK level. tone -- You received this message because you are subscribed to the Google Groups Android

Re: [android-beginners] Proportion of userbase by Android version?

2010-01-29 Thread Mark Murphy
Where can one find a pie chart showing how many Android users are running (say): 1.5 vs 1.6 vs 2.x ? http://developer.android.com/intl/fr/resources/dashboard/platform-versions.html -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books:

Re: [android-beginners] Eclipse can't seem to locate R.java

2010-01-29 Thread Temitope Akinwande
Or you could try setting eclipse to build Projects automatically. Project Build Automatically. I believe that doing it this way will generate R.java as soon as necessary Hope that helps. On Fri, Jan 29, 2010 at 5:19 AM, Murilo Braga muri...@gmail.com wrote: i just had to clean my android

[android-beginners] custom soft keyboard and candidateview

2010-01-29 Thread André
Hello, is it possible to have a custom soft keyboard included in your apk? And also, is it possible to have a custom candidateView included in your apk? If so, can anyone point me in the right direction for it? regards André -- You received this message because you are subscribed to the

Re: [android-beginners] where to start with android

2010-01-29 Thread Kenn Lisudza
Hi Jigish, I'd suggest that you start by taking time to learn the Java language basics an concepts before you go deep into advanced stuff like J2ME and Android development. I think it will be a piece of cake you're not new to programming. On Thu, Jan 28, 2010 at 11:30 AM, jigish

[android-beginners] Re: Proportion of userbase by Android version?

2010-01-29 Thread Robert Nekic
Does anyone know how often this data is updated? I expected to see it updated around 1/18, 2 weeks after the 1/4 reporting date it currently showsyet here it is, 1/29 and this data is now a month old. On Jan 29, 9:51 am, Mark Murphy mmur...@commonsware.com wrote: Where can one find a pie

[android-beginners] Re: Gradient Image

2010-01-29 Thread Robert Nekic
In that case, you are probably stuck creating multiple versions of your image based on resolution and screen density and placing them in specific resource folders. Have you looked at the documentation regarding Resource directory qualifiers for screen size and density?

[android-beginners] Re: Notification helf

2010-01-29 Thread KitzyKitt
If you could be more persice about what you want to do, that would help pinpoint a better solution. You can try doing a toast... Toast.makeToast(notification string, Toast.SHORT).show(); My syntax might be off, but look up Toast Or are you wanting something in the notification bar at the top of

[android-beginners] Re: LogCat window seems to stop working

2010-01-29 Thread KitzyKitt
I have also noticed that hitting the clear log. Button in Eclipce will wipe the log and not reconnect it. Restarting Eclipse will reconnect the log. You can try using the command line to show the log. -Kitzy On Jan 28, 11:20 pm, Kevin Duffey andjar...@gmail.com wrote: Hey all, Has anyone

[android-beginners] Re: Gradient Image

2010-01-29 Thread MobDev
Yes, I did take into account the fact of the different resolutions... On the other hand, I am using several Images for my GUI, so I will be obbliged to use several resolutions anyways to keep the GUI looking good... So in the end my question still stands : is it even possible to get a Image-based

[android-beginners] Re: How can I set max-height on GridView?

2010-01-29 Thread KitzyKitt
Are your GridView and Spinner element all withiin the same element, such as a LinearLayout? If so, try posting your layout file here. -Kitzy On Jan 27, 4:45 am, CoRex mrco...@gmail.com wrote:   Hi all. I am new to android-development so please be patient with me. :) I am trying to

[android-beginners] Re: CustomView - horizontal slider help needed

2010-01-29 Thread MobDev
wow ! great information, I will be having a look at this next week ! At a first glance it looks like a very gooid pointer on how to get thins done :D Thx a lot ! On 28 jan, 02:49, XCaffeinated ssatn...@gmail.com wrote: Apologies, I forgot the links in the above post: The full composited

[android-beginners] Re: where to start with android

2010-01-29 Thread KitzyKitt
The best place to start would be with the Hello Andoid tutorials on the Android website. They give you small projects to code on as well as how to setup your environment. After that, you may want to look at the thread on great Android books and choose one to read. Happy Coding -Kitzy On Jan

[android-beginners] Re: Gradient Image

2010-01-29 Thread skink
On Jan 29, 10:47 am, MobDev developm...@mobilaria.com wrote: I'd like to use Images (so this image does include a gradient but also several other elements like pre-rendered text but also a complex mix of vertical and radial gradients) so using only LinearGradient or RadialGradient wont

[android-beginners] Re: save text from edittext to file

2010-01-29 Thread André
Still I haven't been able to make this work? I have changed that way to make the file a little bit to a way that has worked fine for me when instead of using a variable on out.write (VAR); I just wrote out.write(Hello World); The later one works fine. But when I try to get my text I want out of

[android-beginners] Re: Gradient Image

2010-01-29 Thread Robert Nekic
The only other thing that comes to mind is perhaps the RelativeLayout isn't sizing to 320x480 courtesy of padding or margins or other layout items...which then causes the it to scale its background image a bit? Have you tried copying the image to the SD card and viewing it in the image gallery,

[android-beginners] Re: Gradient Image

2010-01-29 Thread skink
On Jan 29, 7:29 pm, Robert Nekic robertne...@gmail.com wrote: The only other thing that comes to mind is perhaps the RelativeLayout isn't sizing to 320x480 courtesy of padding or margins or other layout items...which then causes the it to scale its background image a bit? sure its not 480px

[android-beginners] Re: Gradient Image

2010-01-29 Thread Robert Nekic
In that case, instead of using the image as the RelativeLayout's background, have you tried placing it into your RelativeLayout via an ImageView with height/width set to wrap_content and the scaleType to centerCrop? You might lose some pixels on the edges but it should at least display the image

[android-beginners] موقع جديد لفتح اى موقع ممنوع او محجوب

2010-01-29 Thread alagmy
موقع جديد لفتح اى موقع ممنوع او محجوب الأن يمكنك فتح أى موقع محجوب ببلدك فقط من خلال هذا الموقع open all blocked sites now for free and have fun http://translatorproxy.zxq.net -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try

[android-beginners] Re: Gradient Image

2010-01-29 Thread skink
On Jan 29, 9:18 pm, Robert Nekic robertne...@gmail.com wrote: In that case, instead of using the image as the RelativeLayout's background, have you tried placing it into your RelativeLayout via an ImageView with height/width set to wrap_content and the scaleType to centerCrop?  You might

[android-beginners] Re: Gradient Image

2010-01-29 Thread Robert Nekic
So does the gradient look any better? On Jan 29, 5:05 pm, skink psk...@gmail.com wrote: On Jan 29, 9:18 pm, Robert Nekic robertne...@gmail.com wrote: In that case, instead of using the image as the RelativeLayout's background, have you tried placing it into your RelativeLayout via an

Re: [android-beginners] How to with android-sdk_r3-linux.tgz

2010-01-29 Thread Xavier Ducrohet
m5 was a very very early look of the platform, and the API was not finalized at the time. So, things have changed and you need to use the new API for whatever it is you are doing. After 1.0, alls API are supported on future versions so you won't have error when you move to newer versions of the

Re: [android-beginners] Re: LogCat window seems to stop working

2010-01-29 Thread Kevin Duffey
I thought about that.. starting adb from command line instead of eclipse.. not sure how to run the logcat output from there yet, I am sure google search will show how. I wonder if there is some issue with the IDE and android debug/logcat that causes this to happen at times. Today, I started my

[android-beginners] ADB problem

2010-01-29 Thread Rc3375
Is there anyone who has had any problems using WIN7 and Eclipse? Everytime Eclipse starts this error always comes up: UNABLE TO PARSE ADB VERSION. If you try and run/debug the app from within WIN7, The connection to adb is down, and a severe error has occured. [2010-01-29 19:00:17 - app name]

[android-beginners] Re: Simple Android app for composing music

2010-01-29 Thread Jack
Thanks Kevin. I have another question. Can I produce sound or tone inside my JAVA code instead of reading a sound file from somewhere when the user touches a point on the screen? This way I just have to emit a sound at some frequency/pitch (defined numerical value), based on a touch event. On Jan

[android-beginners] android application using its location functionality

2010-01-29 Thread androidreamer
i m new to android, and i m tryin to build an application which will provide the diatances of nearby restaurants,hospitals.i am thinkin on saving the names and their location of some of the places and further if the user is nearby that location it will give those names of nearby places. So i want

[android-beginners] [Android-beginners] (x,y) co-ordinates of touched area ?

2010-01-29 Thread Vivek Satpute
Hi, I am exploring the android's webkit. If my webpage have many URLs one after another and very close to each other. So whenever we touch on particular URL, webkit reads (X, Y) co-ordinates of touched area to select only that URL. Can anyone please help me to find out where (in android's webkit