Which version of Eclipse are you both running?
I've not come across this problem before, but its possible that your
emulator needs resetting. Try running:
emulator -wipe-data
from the command line to reset the data image.
Sean
On Sun, Aug 23, 2009 at 2:57 PM, Ivan wrote:
> Does anybody has a
Can you post up your manifest file?
On Tue, Aug 18, 2009 at 2:41 AM, tinyang wrote:
> I am developing an app and so far it has 3 complete acticities. For some
> reason, everytime I install it and run it in my emulator, it creates an icon
> for each activity instead of creating only one activity
You have not downloaded the Android SDK. You have downloaded some
random Java applet called "Anfy" that has something to do with
manipulating images.
Please download the *Android* SDK from here:
http://developer.android.com/sdk/1.5_r3/index.html
Regards,
Sean
On Fri, Aug 7, 2009 at 9:07 PM,
Eclipse works just as well in Linux as it does in Windows. The error
you are getting can have several manifestations, try pulling any
third-party .jars out of your project and start Eclipse using the
-clean switch.
Building from command-line works as well, you can write a build script
in ANT or m
> I thought I had read that Android does not use Sun's Java because
> of copyright issues but rather uses Dalvik, which is not 100%
> compliant.
Where did you read this? Dalvik is a JVM implementation optimised for
the mobile platform. It isn't a Java SDK, hence no javac.
--~--~-~--~
On Wed, Jul 29, 2009 at 10:35 AM, BORO wrote:
>
> Hi. I would like to create a folder (s) under raw or/and drawable
> folders.
> Is it even possible and why not? According to the documentation it
> seams that folder names are limited to a specific set of names which
> have to do with phone setting
On Tue, Jul 28, 2009 at 12:33 PM, SrilankanKK wrote:
>
> Hi
>
> i have put this question on several time on this forum. But i didn't
> get any answer.
>
It's fine to bump a unanswered post after a few days, but please don't
post to multiple lists at the same time. You just infuriate the other
elegos,
The official dev guide provides an example for XmlPullParser:
http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html
Bear in mind XmlPullParser has some specific uses. If you are looking
for an alternative to SimpleXML then you should probably look at basic
SAX parsing,
Shawn,
I fail to see how this is a problem with Android. As Mark has stated
repeatedly, it is the carrier who pushes OTA updates for the devices,
not Google or the android-beginners mailing list. The issue you
describe sounds like the blame rests solely with NTT DoCoMo. They are
the ones pushing
Android supports bluetooth, Wifi (local networking) and USB.
Which one you want will depend on your requirements. For easy
sychronisation of files between phone and PC, USB is probably a good
choice; assuming you don't require the connection to be wireless.
Regards,
Sean
On Thu, Jul 23, 2009
An intent is an instruction you send so the system will perform an
operation. You pass in a command in the form of a context string, such
as "android.intent.action.DIAL", along with some data, like
"tel:01234567890".
See here: http://developer.android.com/reference/android/content/Intent.html
An
In addition to option #2, you could write a small application that
listens on the intent contexts and acts as a stub for the radar app
you want to target. Just accept the data being passed in and send back
some static dummy responses.
You can then deploy this dummy app on your emulator. This will
Carl,
Can you post your activity XML? Ill take a look, its difficult to visualise
exactly what you are trying to do
On Jun 23, 2009 6:33 PM, "Carl" wrote:
Why has it got to be s difficult? For a week now I’ve been
reading and playing around with code and have still not found the
answer!!!
On Tue, Jun 23, 2009 at 1:07 PM, MMC2 wrote:
>
> Can someone please tell me how to enter a negative number into an
> EditText?
Ensure the EditText box is in focus (the cursor will be blinking
inside it), then press the minus key "-" followed by the numerical
digits required for your number.
>
>
Ed,
F11 and F12 are apparently alternatives:
http://developer.android.com/guide/developing/tools/emulator.html
You should also be able to start the emulator in landscape/portrait
mode using the -skin command switch:
emulator -skin HVGA-L -avd
emulator -skin HVGA-P -avd
Regards,
Sean
On
I hit the same issue a while back. I believe what you are looking for is:
make modules
On Fri, Jun 19, 2009 at 1:48 PM, Jimmy-Creupagu wrote:
>
> Same problem... i thought it was something wrong in my
> configuration...but maybe there is something missing :S
>
> On Jun 18, 2:22 pm, nikki w
Richard,
Have you installed the JDK? tools.jar is bundled in the lib/ directory.
http://java.sun.com/javase/downloads/index.jsp <- You want the
download labelled "Java SE Development Kit (JDK)"
Regards,
Sean
On Fri, Jun 19, 2009 at 11:40 PM, richard cobb wrote:
> After installing Ecilpse an
Voice search is disabled in the UK as well, from my understanding it has
something to do with the build customisations made by the service providers.
I don't think you can turn it on, at least I've never heard of a way to do
it. Vodafone might be able to shed some light as to why they chose to
dis
No, but I believe it is possible to distribute a new modified Contact
app that includes the functionality you want to add.
On Wed, Jun 17, 2009 at 11:05 AM, Swissdroid wrote:
>
> is it possible to add a link to the default contact application which
> links to the own application.
>
> default ther
These topics are quite specialised, you might get better responses on the
android-developer list...
The IM app was probably being developed around the same time, or before, the
kxml2 component was added.
You might get some help with kXML here: http://kxml.sourceforge.net/kxml2/
Regards,
Sean
Yogesh,
>From my recollection, with the 1.1 SDK you don't need to create an
AVD, that functionality was introduced later on.
You should be able to just type "emulator" and the emulator
will launch the built-in AVD. If you actually want more than one AVD,
you'll need to upgrade your SDK.
Is ther
Andy,
A simple example is provided on the already linked article for
PullParser
(http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html)
An example for using the SAXParser is available here:
http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html
If you
Janardhan,
Sorry, I'm not sure what your question was in the follow-up email, is there
something specific that you are struggling with that Balwinder did not
provide in his links?
There are various ways to achieve the kind of synchronous messaging you
want: standard TCP sockets, Web services, Jab
Yep, I third that. A great beginners book. Keeps you interested with
lots of examples.
On Fri, Jun 5, 2009 at 4:51 PM, Steve wrote:
>
> I'll second that! And it packs a lot of very good material in only
> 200 pages, so a great way to get an intro to Android dev in a short
> time.
>
> On Jun 4,
Vignesh,
Put the TableView inside a ScrollView:
Using TextViews to represent the cells isn't particularly complicated.
If you are building a table with a large number of rows/columns then
you could add them programmatically
The short answer to both of those is "no". The market is still fairly
limited with regards to i18n and currency conversion.
This may change in the future, I suggest you raise both questions
(separately) on the market forums to try and help this process.
On Jun 2, 2009 12:26 AM, "myandroid" wrote
I'm not sure why this might be considered the "hard way"... Can you
elaborate on why it is not easy for you?
In answer to your question; I believe getRootView() would also do what you want:
http://developer.android.com/reference/android/view/View.html#getRootView()
Regards,
Sean
On 5/31/09,
Hello Mike,
I'm not familiar with the code you are using, but I believe you want
to use setSelection() inside the "onCreate" method of the activity,
something like:
findViewById(R.id.myListView).setSelection(0);
See here for more info:
http://developer.android.com/reference/android/widget/ListV
Vinny,
GameDev.net (http://www.gamedev.net/reference/start_here/) and
DevMaster.net (http://www.devmaster.net/wiki/Main_Page) are good
places to start. There are some good books available too, check out
Amazon.
In my opinion, you should really gather some experience developing
games for the PC b
It sounds like you installed an app on the emulator that declares
itself as a "home" app to Android.
Usually you have a checkbox at the bottom of the dialog that allows
you to tell it not to ask again. Worst case scenario; just ditch the
whole emulator and re-install it.
I'm not sure on how you
I'm not sure on the purpose of the scrollbar attributes on the
TableLayout, usually if you want scrollbars on a layout, you wrap them
in a ScrollView:
...
Regards,
Sean
On Thu, May 28, 2009 at 12:07 AM
Check out table_layout_10.xml:
http://developer.android.com/guide/samples/ApiDemos/res/layout/table_layout_10.html
It uses a table containing TextView's and Button's. Basically, you
want a series of TableRow views, containing the Button views inside
(each View becomes a new cell).
Abdelkarim,
Take a look at the developer guide for information on data storage,
including files:
http://developer.android.com/guide/topics/data/data-storage.html
There is a tutorial on reading/writing files in Android here:
http://www.anddev.org/working_with_files-t115.html
As an aside-note: t
Luke,
Perhaps you could run "adb install" across the directory contents? e.g.
find ~/Desktop -name "*.apk" -execdir adb install {} \;
On Tue, May 26, 2009 at 7:47 AM, Luke wrote:
>
> Greetings,
> As the tittle.
> Thx
>
> >
>
--~--~-~--~~~---~--~~
You received
I haven't tried this before, but I'd imagine you could construct a
region positioned at getX()/getY() with a circumcircle radius based on
the output of getSize().
With this approach, you will have to define a relative size for the
fingerprint. This may not be useful if you are looking for high
pr
k wrote:
>>
>> > I found some post suggesting copying (not renaming)
>>
>> > /etc/udev/rules.d/50-android.rules.
>>
>> > to
>>
>> > /etc/udev/rules.d/51-android.rules.
>>
>> > It helps.
>>
>> > regards
>> &
Hey Justin,
I believe you can retrieve the source from version control
(http://source.android.com/download), and switch to the "android-1.0"
tag. I'm not sure if/how you do this with the repo tool, but you could
navigate into each of the project directories and use git to checkout
the tag for eac
Try:
wget -r -np http://www.netmite.com/android/mydroid/packages/apps/Browser/
You're probably better off getting it from the official source though:
http://source.android.com/
On Thu, May 21, 2009 at 9:56 AM, vineeth Desai
wrote:
> Hi All,
> Could you please tell me how to download the files
Are you sure you downloaded the WINDOWS version of the SDK? I've just
downloaded it and there is an "android.bat" inside the
/android-sdk-windows-1.5_r1/tools/ directory.
You want this one:
http://developer.android.com/sdk/download.html?v=android-sdk-windows-1.5_r1.zip
On Tue, May 19, 2009 at 1
I would give it 24 hours before bumping a question. There are people
in different time zones who may know the answer, and only haven't
responded because they're dreaming of electric sheep.
On Wed, May 20, 2009 at 3:47 PM, Junior Einsfeld
wrote:
> Anyone?
>
> Regards,
> Junior
>
> On Wed, May 20
Hello Nikolar,
Your emails are getting sent, we've received it 3 times now. Don't Panic :)
Drop the "android:" prefix to your style attribute and follow the
style convention given here:
http://developer.android.com/guide/topics/resources/available-resources.html#stylesandthemes
I don't think
Hello Vignesh,
onCreateDialog() is invoked before the dialog is populated, so the
RadioGroup widget has not yet been created. You probably want to
override onPrepareDialog(). See these sections in the API:
http://developer.android.com/reference/android/app/Activity.html#onCreateDialog%28int%29
h
How about you put the games on a website? You get the flexibility of
using regular HTML/CSS for designing the site, and people will be able
to access it from the Web browser on either their phones or their
computers.
I guess if you really want to build a client app for this, you could
do so using
Hey all,
I'm working on an application which requires a Wifi service. To ensure
it does not start attempting to resolve addresses over the cell
network, the app automatically starts the Wifi service when it is not
available, and determines that connection has been established by
polling for an IP
In Ubuntu/Kubuntu, you need to add a rule to the USB config so that
debugging will work:
http://telyas.com/wordpress2/2009/04/29/ubuntu-jaunty-and-android-adb/
If you haven't found it already, see this section in the development
guide for info on how to set up device debugging:
http://developer
(eg. cube
> or triangular based pyramid) I have no problems. I wouldn't know which
> part of the code to post as there is no Exception it just drops back
> to the previous Activity.
>
> Maybe I need to look at the memory usage or something else while it is
> drawing the fram
Well there is really no way of telling from the error dump you've given, it
essentially points to a memory fault of some kind, but more likely something
like attempting to access a released resource. Can you post up some of the
offending code?
On May 17, 2009 12:15 AM, "Julius Spencer" wrote:
H
This confused me the first time I used eclipse, but yes, empty packages
(including tld's) are shown in the package view. I believe this is partly to
allow easy copy/move refactoring of classes across the entire namespace.
On May 16, 2009 11:28 PM, "Raphael" wrote:
Oh I see. That's just how Ecli
I can confirm, the ADT plugin site appears to be down for me as well.
On May 15, 2009 5:39 PM, "medelin" wrote:
Hi,
I coudn't fetch the ADT Eclipse plugin using the address provided by
doc: https://dl-ssl.google.com/android/eclipse/
Someone confirm this?
Regards
--~--~-~--~~---
I'm not an expert, but you are probably looking for the NDK.
Also, see this:
http://honeypod.blogspot.com/2007/12/dynamically-linked-hello-world-for.html
On Thu, May 14, 2009 at 1:23 PM, eka wrote:
>
> Hi,
>
> Can I compile my C/C++ code as an engine and then call it from Java as
> the GUI? I h
When does this message appear? When you try to compile your code? Are
you using Eclipse, or something else?
Try the "Hello World" first, to make sure your environment is set up
correctly. http://developer.android.com/guide/tutorials/hello-world.html
On Thu, May 14, 2009 at 4:30 AM, aglagla wro
If you go to Help -> Software Updates -> Manage Configuration, is the
Android plugin present in the left tree? Does it have an exclamation
mark icon against it?
On Thu, May 14, 2009 at 11:29 AM, khendar wrote:
>
> I have followed the instructions on this page (http://
> developer.android.com/sdk
You may need to set your JAVA_HOME environment variable.
What is the exact error you're getting?
On Thu, May 7, 2009 at 1:40 PM, Dennis Christy wrote:
> I'm sorry, I did not explain my problem completely. I just want to create
> the AVD so I can run the tutorial. Opening the terminal window i
You want the "command prompt" in Windows. Try typing "cmd" into the
launch box in the start menu.
On Thu, May 7, 2009 at 1:12 PM, Dennis Christy wrote:
> I get the following error in attempting to run the HelloAndroid tutorial:
> "Failed to find an AVD compatible with target 'Android 1.5', Launc
The kernel version can be found in the .repo/manifests/default.xml in the
corresponding SDK.
1.0 = 2.6.25
1.5 (current) = 2.6.27
Cupcake = 2.6.30-rc4 (pulled from latest kernel/common tree)
On May 6, 2009 3:25 PM, "ja...@work" wrote:
Hi to everybody :)
I didn't understand which version of lin
Ah, I'm glad its not just me going mad. Thanks for the link dragli, will
give it a try later.
On May 5, 2009 7:08 PM, "dragli" wrote:
Try to create an AVD. Please follow the page below:
http://developer.android.com/guide/tutorials/hello-world.html
On 5月1日, 上午3時07分, "sbaye...@gmail.com" wrote:
I'm getting the same thing with Eclipse 3.4
On May 5, 2009 7:08 PM, "Lorenz" wrote:
Hi
i've just tried to install SDK 1.5 and I have a big problem,
when I try to point the sdk directory(in Eclipse 3.3.2) from "Windows-
>Preferences->Android" two windows appear: in the first is written
"...pingU
I use OpenJDK 6 in Ubuntu, I've had no problems so far.
Obviously the Android platform only officially supports the Sun
implementation (http://developer.android.com/sdk/1.1_r1/requirements.html),
so if you encounter unusual compilation problems it pays to have the
Sun JDK available somewhere just
I'll be upgrading in the next couple of days, if you don't get your
answer already by then I'll let you know how I get on.
On Sat, Apr 25, 2009 at 11:10 AM, wonglik wrote:
>
> Hi
>
> Does anybody have a problem connecting G1 to Ubuntu 9.04?
>
> It was working fine for me on 8.04 but now I just
Hmm, the site worked for me yesterday, I'm not in front of a pc today to
test it but will get back to you if someone else doesn't get there first.
On Apr 16, 2009 12:56 AM, "goodboyx" wrote:
Can someone tell me where I can find the android plug in for Eclipse.
This site is not available anymore
Hello Nikos,
I'm not certain of your intentions, so this might be completely off the mark:
A G1 dev phone would give you a degree of functionality, but depending
on your requirements the built-in sensors may or may not be accurate
or sensitive enough...
By purchasing the dev phone you could int
Count me in, sounds good!
On Apr 5, 2009 1:37 AM, "DJ Ksar" wrote:
Sounds like a great event. Thanks for letting us know.
-Randy Ksar
http://twitter.com/motodev
On Apr 1, 11:10 am, natalieskillsmatter
wrote: > We are pleased to announce the next
London Android User Gro...
> Register now for
I meant double digits in MB of course :)
On Apr 2, 2009 8:36 PM, "Sean Hodges" wrote:
Are you sure you haven't run out of space on your phone?
Just how big an app are we talking here? If you are pushing into double
digits then you should probably trim it down a fair bit anyway..
Are you sure you haven't run out of space on your phone?
Just how big an app are we talking here? If you are pushing into double
digits then you should probably trim it down a fair bit anyway.. maybe start
by compressing the audio data and reducing the resolution of the images?
On Apr 2, 2009 5:4
Not as far as I'm aware, you'll need to recompile those apps with the new
code. Unfortunately some of them are not open source, so you might need to
look for alternatives for those.
On Mar 30, 2009 6:53 PM, "Mariam Rady" wrote:
Hi all,
I want to add a Menu item or a Context Menu item that can
GCJ won't work (I assume that is what you are trying to use, GCC is a C++
compiler). I don't know where any official lists are, but I think the only
supported are Sun JD
On Mar 30, 2009 6:53 PM, "linuxjet" wrote:
I don't know if I'm just blind but I can not see a recommended
compiler version li
You have to use the Android SDK, but Eclipse isn't necessary. The SDK is
written in the Java programming language (although Android uses a custom
JVM).
You can initially make do with the various phone emulators when developing,
but it's important that you test apps on a real phone before distribut
Enjoying the blog, have added it to my news feeds :)
On Mar 22, 2009 7:13 AM, "triplem" wrote:
I've recently started a blog / forum dedicated to covering Android. I
plan to cover the latest news reguarding Android, including new
devices, programs, and other developments. Furthermore, there is a
Can you post up the socket code that you are trying to use?
If this is your first time writing socket code in Java, you might
benefit from writing a small test program on your PC (not based on
Android SDK) that confirms what you are trying to do... An example
tutorial that might help:
http://java
Interrupting another application with a custom dialog sounds quite invasive
to the user. How about displaying a notification icon when you want the user
input?
Sean
On Mon, Mar 9, 2009 at 3:25 PM, denzel wrote:
>
> Hi,
>
> I have an app that is running in the background doing some things.
> So
101 - 170 of 170 matches
Mail list logo