Hi TreKing,
I have plot multiple markers on the google map using below.
http://developer.android.com/resources/tutorials/views/hello-mapview.html
Now I want to display information of the clicked marker in the
rectangle which has TextView and two images(Which contains Click event
through i can go t
Hi all i cant see Market on my HTC HERO where is the Market
help me pls
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android
To uns
A simple search for "running app" brings up this post (which is one of the
two I was referring to in my first reply and has my answer):
http://groups.google.com/group/android-beginners/browse_thread/thread/1b84a16f990db73/0c98e68745bee824?lnk=gst&q=running+app#0c98e68745bee824
Hope this helps,
Ju
Try looking at the last 150 or so messages. It's there. I've seen it posted
a few times. The point is, it's been answered, very recently in fact, and it
gets tiring repeating the same replies when you'd hope someone supposedly
skilled enough to write an android application could figure out how to d
I'm sorry ! I tried to search ,but didn't get answers.
On Thu, Jan 28, 2010 at 1:47 PM, Justin Anderson wrote:
> This has been asked at least two other times in the last couple days and I
> answered each post...
>
> Have you tried searching this group to see what comes up?
>
> On Jan 27, 2010 10:
This has been asked at least two other times in the last couple days and I
answered each post...
Have you tried searching this group to see what comes up?
On Jan 27, 2010 10:16 PM, "bf wang" wrote:
On android system.I want to get the status of running apps,how to do?
ex. running at foreground
On android system.I want to get the status of running apps,how to do?
ex. running at foreground or background!
--
Best Regards!
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
NEW! Try asking and tagging your question on Stack Overflow a
Hi Justin,
On Tue, Jan 26, 2010 at 6:34 PM, Justin Anderson wrote:
> It is done via a selector... There is not a lot of documentation about
> them, the basic premise is that it is an xml file that defines drawables to
> be used when certain conditions/states are met... such as when something
> g
Hi,
I need to detect the element the user's finger is over as long as he
moves it over the screen. Then i want to extract this element to
process it.
Is it possible? I tried using getHitTestResult(), but it only works
with hits not with move.. any idea?
Thanks
--
You received this message beca
can you send me the output of "emulator -proxy -debug-proxy -avd
" so I can look at it ?
On Tue, Jan 26, 2010 at 2:28 AM, Pebble wrote:
> Hi all!
>
> I'm using the Android SDK r3 under Windows to develop my application.
> The problem is that I'm not able to connect to the internet through
> the
Hi, i'm facing the same problem, but can't find the solution, could
you give a piece of advice on it?
Thanks
Jorge
On 7 ene, 04:07, Mel Navarro wrote:
> Oh. nvrmind.. found the solution :)
>
> On Dec 9 2009, 11:57 pm, Mel Navarro wrote:
>
> > Hi,
>
> > I was wondering if there is a way toselecto
Apologies, I forgot the links in the above post:
The full composited image:
http://i916.photobucket.com/albums/ad9/XCaf/SeekbarOverTestBackground.png
The four component images:
http://i916.photobucket.com/albums/ad9/XCaf/CustomSeekbarParts.png
-XCaf
On Jan 27, 8:39 pm, XCaffeinated wrote:
> Hi
Hi xxx
Sliders in Android are called Seekbars. This may help you when you
search online.
Recently, I needed to do exactly what you are describing. You can see
a test screenshot of this - a Seekbar with images to the left and
right (and a text label above as well, which is also an image, and all
Hi,
I have been using InstrumentaionTestCase.sendKeys(String) for typing
text into text boxes in our app.
This works fine for english charaters but now I need to type Chinese
(unicode) characters which does not work. It just skips the unicode
charaters.
If I use the chinese keyboard on Emulator,
Thank you.
I have tried to do what you wrote. Not sure if I did it right because
I still get a problem. When I put String TESTSTRING = bodyText.getText
(); inside of the onClick method I get a red line under
bodyText.getText(). If i hold my mouse over it suggests me to change
String TESTSTRING do
Check out LinearGradient and RadialGradient. You can define gradient
drawables directly instead of using a PNG for that. The result is a
much nicer, consistent gradient. Use that for the RelativeLayout's
background and layer images on top of it within the RelativeLayout.
http://developer.androi
Ah, something I missed before...
To get the text out of your EditText view, you want to do this:
String TESTSTRING = bodyText.getText();
The String() class does not accept EditText objects, you need to
retrieve the string that is contained inside your bodyText object.
On Wed, Jan 27, 2010 at
The problem is that you are referencing a non-final variable
("bodyText") that is outside the scope of your View.OnClickListener()
inner class.
You need to make bodyText final, so that it can be accessed from
inside your anonymous inner class. You do not need to make TESTSTRING
final, though doing
I tried that now but get the same problem.
here is a screen shot of it:
http://www.andreborud.com/android/android-problem-2.jpg
André
On Jan 27, 5:39 pm, Justin Anderson wrote:
> Why are you using the final keyword? I think that is the source of your
> problem. Remove that and I would be tha
Why are you using the final keyword? I think that is the source of your
problem. Remove that and I would be that everything will work out.
In java, "final" is more-or-less equivalent to "const" in c++. Since you
are setting this variable every time a button is clicked I don't think you
want to
There are some attributes for putting a shadow behind the letters in a
TextView:
http://developer.android.com/reference/android/widget/TextView.html#attr_android:shadowColor
http://developer.android.com/reference/android/widget/TextView.html#attr_android:shadowRadius
Even setting it to black only
Hello,
I'm sure there has been a lot of questions like this here already. But
I haven't been able to find an answer to my question is. I'm still
very new to this so it's probably something very simple.
What I am trying is to save text from a edittext window, it works fine
if I have a pre-written t
Hi,
I am using a RelativeLayout and I'd like to use a PNG Image as a
Background...
So I have created a nice background Image with some text and a very
very nice gradient, with my devices screen size (320x480)...
Afterwards I set this drawable resource as background parameter of the
RelativeLayout (
Thanks Brian and Walt. You guys helped in the right direction. Btw, I
also logged a bug and got the same response. Just got my code working.
Thanks
Siddharth
On Jan 20, 7:03 pm, blcooley wrote:
> You need to make sure to use the correct LayoutParams. If you are
> using Eclipse and let it import
Hi,
I am trying to create a Custom view which basically should become a
horizontal slider...
Now my slider would exist out of several images, one image as a
background, a superimposed image (foreground) with the actual slider,
and an extra icon on either side...
So how should I start working toward
I reported the user to Yahoo! abuse for spamming the list and they took action.
2010/1/4 alagmy :
> يسعدنى ويشرفنى ان تنضم لأسرة منتدى اجدع اصحاب
>
>
> السلام عليكم يسعدنى ويشرفنى ان تنضم لأسرة منتدى اجدع اصحاب لتشارك معنا
--
You received this message because you are subscribed to the Google
Gr
> Or this link:
> http://www.ebookee.com/Google-Android-Ebooks-Pack_387146.html
Please be advised that these books are being distributed in violation of
their copyright.
--
Mark Murphy (a Commons Guy)
http://commonsware.com
Android App Developer Books: http://commonsware.com/books.html
--
You
Try your local book store, (technical/university) library or online book
store.
On Wed, Jan 27, 2010 at 11:26 AM, Chirayu Dalwadi wrote:
> I want useful links, requried to learn android Help me out
>
> --
> You received this message because you are subscribed to the Google
> Groups "Andr
I want to call a webservice through android. How do i do that??
--
Warm Regards,
Chirayu Dalwadi
"Pain is temporary. Quitting lasts forever." -- Lance Armstrong
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
NEW! Try asking and tagging y
I want useful links, requried to learn android Help me out
--
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android
To unsubscr
30 matches
Mail list logo