[android-beginners] regarding soap client and webservices

2009-06-26 Thread vinny.s...@gmail.com

Hi Every One

i am new to web services

I have a created a Php Script in the server having a method name
getList
having three rows in the database are names images and rating field
having 20 names nearly

how to get the data in the Android screen in the form of table layout
or list view ?


I am used for this nusoap php web services and Mysql.

i have written a code for android soap client but i am not how call
that method and field in database

there will great appreciation for this solution..


Thanks in advance
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] install Android app from Gmail

2009-06-26 Thread Beth Mezias
Hey there, hi there, ho there...Is there a way to make Android open and
install an apk file as an attachment sent in a Gmail message?  This is a
nice, signed apk file that installs to the phone correctly from Eclipse or
the command
line.  I'm just checking to see if this is working for somebody somewhere.
Cheers,
Beth
-- 

Princess 
Margarethttp://www.brainyquote.com/quotes/authors/p/princess_margaret.html
- I have as much privacy as a goldfish in a bowl.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Samsung I7500 ADB connection problem

2009-06-26 Thread mitsus

Hi comunity,
i'm new on this GROUP, then...hello all!
Now, I've a Samsung I7500 (a prototype version but it has full
functionality) and when i try to connect it to using its USB cable to
my Linux Debian (Lenny) workstationi don't see anything.
With the HTC devices i haven't problems.

Someone know the Vendor ID and Product ID of this product??

Best Regards

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: startActivity called from non-Activity context - help

2009-06-26 Thread Jason Van Anden

Just a shout out ... still no luck.  Still frustrated.

I have a hunch as to what is happening - but its seems a little nutty.
 My hunch is that when FLAG_ACTIVITY_NEW_TASK gets raised, my
PendingIntent gets replaced by the standard MAIN/LAUNCHER intent,
which is used to activate the application.

What I think should happen is that startActivity gets called with the
Intent passed as a variable.

Mark, your suggestion with the you rang? option does not work in
this case since there is no way to tell if the app is being resumed
via the Status Bar item or other typical means.

Other suggestions or help super appreciated.

j

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Why Michael Jackson death?

2009-06-26 Thread Huynh Nhu Thuy

Why Michael Jackson death?
http://hd-family.blogspot.com/2009/06/all-of-michael-jackson-king-of-pop-part.html


Hot video of Michael Jackson:
http://hd-family.blogspot.com/2009/06/michael-jackson-25th-anniversary.html


All of Michael Jackson here:
http://hd-family.blogspot.com/2009/06/all-of-michael-jackson-king-of-pop-part.html
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Delete non empty folders

2009-06-26 Thread Danesh Mondegarian

Hey is it possible to delete non empty folders without root...also how
can i associate the getName() command and store it in a string ?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] problem in include tag in relative layout xml files

2009-06-26 Thread arindam bhattacharjee

Hi,
I was trying to use include tag in a RelativeLayout as follows:

---
?xml version=1.0 encoding=utf-8?
RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
android
android:layout_width=fill_parent
android:layout_height=wrap_content

ImageView
android:id=@+id/toolbar_divider1
android:layout_width=wrap_content
android:layout_height=wrap_content
android:layout_marginRight=@dimen/toolbar_item_gap
android:src=@drawable/menu_divider
/ImageView

include android:id=@+id/mnubtn_new_email
layout=@layout/text_rightof_icon
android:layout_toRightOf=@id/toolbar_divider1/

/RelativeLayout
---
Where text_rightof_icon layout xml is as follows:

---
?xml version=1.0 encoding=utf-8?
RelativeLayout xmlns:android=http://schemas.android.com/apk/res/
android
android:layout_width=wrap_content
android:layout_height=wrap_content

ImageView
android:id=@+id/icon
android:layout_width=wrap_content
android:layout_height=wrap_content
android:layout_marginBottom=@dimen/text_icon_bottom_margin
/

TextView
android:id=@+id/text
android:layout_width=wrap_content
android:layout_height=wrap_content
android:gravity=center_vertical
android:layout_toRightOf=@id/icon
/

/RelativeLayout
---

So my expectation was that the included layout text_rightof_icon will
be placed on the right edge of toolbar_divider1.  But
text_rightof_icon  actually overlaps toolbar_divider1.
toolbar_divider1's image and text is set in code after inflating it in
code and using findviewbyid() to get its reference.  Everything works
fine except the layout.  Any idea why?  Now instead of using include I
am actually adding content of  text_rightof_icon  in all places which
is making my xml file very large and afraid that it will be hard to
maintain later.

Thanking in advance,
regards,
Ari

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] what is shared user id,what's meaning of shared user id = android.media

2009-06-26 Thread wan wei

what is shared user id,what's meaning of shared user id =
android.media

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Porting Android on a Non-Mobile SoC

2009-06-26 Thread Neil Armstrong

Hi all,

I was considering porting Android on a new non-mobile System On Chip
with an ARM1176 arm core and (at least) 128Mb of DDR2 memory.
A compatible video output (RGB 16bit 0565) is available, but sound
output may require some work and no 3D acceleration is available (but
a bitblitter core for 2D is available).

A linux patch is available for linux 2.6.27.

My questions are :
 - How can I easily merge the Android specific patchset with the
board's patchset, without diffing the two kernel codes
 - How can I easily start testing android's core (Dalvik, ...) without
having all Android's desktop
 - Can I disable the 3D acceleration, the telephony backend and the
sound output ?

And major question, can you give me some clues to start with androids
code ?

Thanks !

Neil

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Android SDK

2009-06-26 Thread Thush

Go to:
Eclipse - Window - Preferences - Android - SDK Location

Give the root folder where you extracted your Android SDK.
eg. C:\Android\android-sdk-windows-1.5_r2

It should work.

Let me know.

Thushan


On Jun 6, 4:51 am, Troy Borja tbo...@systemacorp.com wrote:
 I too am running the same setup as rickbaker73. i have installed the
 1.5 sdk, ADT 0.9 and running on Eclipse 3.4 on Xandros eeepc. In
 Android Preferences I see the 3 targets. I have also used the Android
 AVD Manager to create an AVD.

 The problem is that when I create a New Android Project my build
 targets list are empty. Any help would be greatly appreciated.

 On May 23, 5:25 am, rickbarke...@googlemail.com



 rickbarke...@googlemail.com wrote:
  Right.

  Linux (Xandros eeepc) running eclipse ganymede with the ADT plugin.

  I've selected the android sdk directory in Windows-preferences-android 
  and I get the 3 entries in the list box (android v1.1, v1.5

  and google api's).

  so far so good.

  next I got to the android project wizard but there arenobuild
  targets in the box below the project name - as soon as I begin typing
  a project name, i get a new error at the top saying An SDKTargetmust
  be specified.  I've read the previous post about creating AVD's but
  not really sure as to how this will help.

  Thanks.- Hide quoted text -

 - Show quoted text -

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Hi everybody....

2009-06-26 Thread Hemant

I Faced some problem while download plug in eclipse 3.4.2 on windows
platform and it fails to complete installation of android plugin...
I have tried to download by http and https  but still it gives
problem
Can any one solve this problem..PLZ help me...

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Android NDK problem withe samples

2009-06-26 Thread michu2510

I downloaded NDK for Android and installed using this command:

 sh host-setup.sh
Detecting host toolchain.

CC : compiler check ok (gcc)
LD : linker check ok (gcc)
CXX: C++ compiler check ok (g++)
Generate   : out/host/config.mk
Toolchain  : Checking for arm-eabi-4.2.1 prebuilt binaries


Then I go to NDK root folder and use this command:
 make APP=hello-jni
Android NDK:  The configuration file 'out/host/config.mk' doesnt'
exist.
Android NDK:  Please run 'build/host-setup.sh' to generate it.

Why i get error what I doing wrong?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: startActivity called from non-Activity context - help

2009-06-26 Thread robotissues

Ultimately sorted out in developers forum here:

http://groups.google.com/group/android-developers/browse_thread/thread/82aa31e33faf783e?hl=en#
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] How can I detect a Landscape and portrait mode in Android?

2009-06-26 Thread hani

How can I know a Landscape and portrait mode in Android
programmatically?
When I flip on or off using G1, the Android recall onCreate method.
When it happens, how can I know the mode ?
Is there any API in Activity to know the mode?
The below method is not called automatically.

public void onConfigChanges(Configuration newConfig)
public void onConfigurationChanged(Configuration newConfig)

Thanks.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Intent filters: how do I know which action to use?

2009-06-26 Thread Jonathan Daugherty

Hi all,

Here's my situation: I'd like to implement support for an alternative
share feature for images taken with the camera.  When I take a
picture on my device and then pull up the menu for that picture, I get
a Share option; then, I get a list of options (Picasa, Gmail, etc).
I'd like to add my own sharing service to that list. My understanding
of the framework thus far indicates I should probably create an
activity with an intent filter saying I'm an alternative for the user-
shares-an-image action.

Now, I don't know if it's even possible to do that; but what I've
found puzzling is that there doesn't seem to be a way to figure out,
given some behavior in some application, how to find out which action
is constituted by the behavior I want to augment.  In this case, I
think I want to provide an alternative sharing activity, but I haven't
been able to find any documentation on what such an activity's intent
filter should look like.

If anyone has pointers for my specific situation, that would be great,
but my bigger concern is how to solve this problem next time I see a
behavior I want to modify/replace/etc.

Thank you!

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Bug in Notepadv3 Tutorial

2009-06-26 Thread quanghuytruongdinh

I haven't checked this case yet, but, Nice to know this interesting
information from you! Thanks.

On Jun 25, 2:45 pm, Hongster expertle...@gmail.com wrote:
 Hi, I have found a bug in the NoteEdit class. The bug lies in the
 outState.putLong(NotesDbAdapter.KEY_ROWID, mRowId); statement in
 onSaveInstanceState() method.

 When a new note is created the mRowId is null. If the application is
 terminated while user is editing a new note, an uncaught
 NullPointerException will be thrown because an null parameter is
 passed into outStat.putLong().

 To reproduce the bug:
 1. Launch Notepadv3 application.
 2. Press the Menu key.
 3. Select Add Note.
 4. Press the Home key to terminate application.

 I think it can be solved by replacing the statement with saveState().

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] About Android

2009-06-26 Thread pixel

Hi All,

I want to develop the application in Android phone with dotnet.

Is it possible ?

Kindly help me

Thx
Pixel


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Hi everybody....

2009-06-26 Thread Jose Ayerdis
Can you describe the problem better? what does it says?

2009/6/25 Hemant patwardhanheman...@gmail.com


 I Faced some problem while download plug in eclipse 3.4.2 on windows
 platform and it fails to complete installation of android plugin...
 I have tried to download by http and https  but still it gives
 problem
 Can any one solve this problem..PLZ help me...

 



-- 
Atte

[[Jose Luis Ayerdis Espinoza]]
http://blognecronet.blogspot.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Persisting app data (not preferences)

2009-06-26 Thread johnny

Ruben,

My app reads/writes to and and from a config file as well. I'm using
the normal java FileInputStream/FileOutputStream. Seems to work just
fine.

- Johnny
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Persisting app data (not preferences)

2009-06-26 Thread Reuben Harris

Thanks Johnny, it's a lack of Java knowledge on my part. Once I found  
the Serializable interface and java.io.ObjectInputStream and friends,  
it was plain sailing.

Thanks again!

-- Reuben

Sent from my iPhone

On 26 Jun 2009, at 19:19, johnny johnny.ra...@gmail.com wrote:


 Ruben,

 My app reads/writes to and and from a config file as well. I'm using
 the normal java FileInputStream/FileOutputStream. Seems to work just
 fine.

 - Johnny
 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Intent filters: how do I know which action to use?

2009-06-26 Thread Balwinder Kaur (T-Mobile)

Your idea is correct, that is how it basically works.

You can find more about Intents and how to use them at
http://developer.android.com/reference/android/content/Intent.html
It also has a list of standard android Intent Actions.

The list of Intents used by Google Apps can be found at
http://developer.android.com/guide/appendix/g-app-intents.html

You may also check out http://www.openintents.org/en/intentstable

Hope this helps,
Balwinder Kaur
Open Source Development Center
·T· · ·Mobile· stick together

The views, opinions and statements in this email are those of the
author solely in their individual capacity, and do not necessarily
represent those of T-Mobile USA, Inc.



On Jun 25, 9:31 pm, Jonathan Daugherty drcyg...@gmail.com wrote:
 Hi all,

 Here's my situation: I'd like to implement support for an alternative
 share feature for images taken with the camera.  When I take a
 picture on my device and then pull up the menu for that picture, I get
 a Share option; then, I get a list of options (Picasa, Gmail, etc).
 I'd like to add my own sharing service to that list. My understanding
 of the framework thus far indicates I should probably create an
 activity with an intent filter saying I'm an alternative for the user-
 shares-an-image action.

 Now, I don't know if it's even possible to do that; but what I've
 found puzzling is that there doesn't seem to be a way to figure out,
 given some behavior in some application, how to find out which action
 is constituted by the behavior I want to augment.  In this case, I
 think I want to provide an alternative sharing activity, but I haven't
 been able to find any documentation on what such an activity's intent
 filter should look like.

 If anyone has pointers for my specific situation, that would be great,
 but my bigger concern is how to solve this problem next time I see a
 behavior I want to modify/replace/etc.

 Thank you!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Please Help! I Can't get the ADT Plugin to Install

2009-06-26 Thread Raphael

On Wed, Jun 24, 2009 at 3:52 AM, Pamplemousse
Mk2pamplemousse@gmail.com wrote:

 Hello,

 ADT 0.9.1 worked fine with Eclipse 3.4 until today. Eclipse asks me
 for updates. So I accept the updates and now ADT can't open the XML
 res files of my current projects.

 Is ADT not compatible with updated Eclipse 3.4.2?

ADT should work just fine with Eclipse 3.4.2

R/



 On 22 juin, 16:25, Sander sanderpos...@yahoo.com wrote:
 It did not work for me either when I used the update site. And I do
 not have a classic but the WTP version of Ganymede.
 In the end I downloaded the archive 
 fromhttp://developer.android.com/sdk/adt_download.html
 and I installed from a local archive.
 This worked without problems. Would be nice if the SDK had an eclipse
 directory with this ZIP archive inside.

 On May 6, 3:34 am, J justinssh...@gmail.com wrote:

  I get this error no matter which of the 3 methods I try. What should I
  do?

  An error occurred while collecting items to be installed
    No repository found containing: org.eclipse.draw2d/osgi.bundle/
  3.4.1.v20080910-1351
    No repository found containing: org.eclipse.emf.common/osgi.bundle/
  2.4.0.v200808251517
    No repository found containing: org.eclipse.emf.ecore/osgi.bundle/
  2.4.1.v200808251517
    No repository found containing: org.eclipse.emf.ecore.change/
  osgi.bundle/2.4.0.v200808251517
    No repository found containing: org.eclipse.emf.ecore.edit/
  osgi.bundle/2.4.1.v200808251517
    No repository found containing: org.eclipse.emf.ecore.xmi/
  osgi.bundle/2.4.1.v200808251517
    No repository found containing: org.eclipse.emf.edit/osgi.bundle/
  2.4.1.v200808251517
    No repository found containing: org.eclipse.wst.common.emf/
  osgi.bundle/1.1.202.v200809111955
    No repository found containing:
  org.eclipse.wst.common.emfworkbench.integration/osgi.bundle/
  1.1.201.v200808071700
    No repository found containing: org.eclipse.wst.common.frameworks/
  osgi.bundle/1.1.200.v200805140020
    No repository found containing:
  org.eclipse.wst.common.project.facet.core/osgi.bundle/
  1.3.3.v200809102124
    No repository found containing: org.eclipse.wst.common.ui/
  osgi.bundle/1.1.301.v200805140415
    No repository found containing: org.eclipse.wst.sse.core/osgi.bundle/
  1.1.302.v200808260045
    No repository found containing: org.eclipse.wst.sse.ui/osgi.bundle/
  1.1.2.v200809120159
    No repository found containing: org.eclipse.wst.validation/
  osgi.bundle/1.2.2.v200809050219
    No repository found containing: org.eclipse.wst.xml.core/osgi.bundle/
  1.1.305.v200809120354
    No repository found containing: org.eclipse.wst.xml.ui/osgi.bundle/
  1.0.410.v200809120143

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Can I get Root access on my Google IO Magic?

2009-06-26 Thread Mike Wolfson

I know the Magic phone I got at IO is unlocked, but it doesn't have
root enabled out of the box (I tried to install an app that required
Root, that wouldn't work).

Is there a specific way I can enable root on the phone (ie. a setting
some where)?  Is this possible on this phone?

I know I can flash a new ROM (which I will be doing at some point
anyway, as I want to try some of the alternatives for the phone), but
I am looking for something quicker and easier.  .
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Bluetooth application...how does one get started?

2009-06-26 Thread Michael Dorin

I need to write a bluetooth application for work.  Browsing the
internet, there is tons of
sometime contradictory information on bluetooth applications.

I was wondering what was available in the through java api, and where
would I find the documentation on it.

Thank you,
 Mike

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Android and Wave

2009-06-26 Thread johnny

Are there any plans in the works to incorporate a google wave app on
the Android platform?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Bluetooth application...how does one get started?

2009-06-26 Thread Michael Dorin

Mark,
Thanks for your quick reply.
As far as you know, is there anything one can do in C/C++?
(And still have a standard phone image?)
I have seen a few things where images were rebuilt to enable functionality.
I am not really up for that...but I do need someway to move a file received
by the android to an embedded device that has neither wifi nor eithernet.
Any ideas?

-Mike

On Fri, Jun 26, 2009 at 3:49 PM, Mark Murphymmur...@commonsware.com wrote:

 Michael Dorin wrote:
 I need to write a bluetooth application for work.  Browsing the
 internet, there is tons of
 sometime contradictory information on bluetooth applications.

 I was wondering what was available in the through java api, and where
 would I find the documentation on it.

 The Bluetooth API is not available to Java developers at this time on
 Android.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://twitter.com/commonsguy

 _Android Programming Tutorials_ Version 1.0 Available!

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Bluetooth application...how does one get started?

2009-06-26 Thread Mark Murphy

Michael Dorin wrote:
 As far as you know, is there anything one can do in C/C++?

Sure!

 (And still have a standard phone image?)

Oh.

In that case, I suspect not.

The NDK (native development kit) was released yesterday, but I do not
think the Bluetooth APIs are available for it, either. However, I am not
certain of that, so you may wish to check out the NDK.

Bluetooth APIs are definitely available for custom firmware, but that
requires replacing the phone image.

 but I do need someway to move a file received
 by the android to an embedded device that has neither wifi nor eithernet.

USB might be an option via the NDK. You probably cannot add another USB
driver, but you might be able to tunnel your data through the protocol
used by adb.

Beyond that, I don't have any great options for you at this time.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Android Development Wiki: http://wiki.andmob.org

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Android and Wave

2009-06-26 Thread Mark Murphy

johnny wrote:
 Are there any plans in the works to incorporate a google wave app on
 the Android platform?

IIRC, Google Wave was briefly demoed on Android and iPhone at the Google
I/O launch event for Wave.

Beyond that, there are no plans for native Google Wave clients on any
platform that I am aware of, let alone Android.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Android Development Wiki: http://wiki.andmob.org

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Can I get Root access on my Google IO Magic?

2009-06-26 Thread Disconnect

They broke/removed su. Simplest way is to just copy /system/bin/sh to
/system/bin/su and chmod 4777. Better answer is to install the
superuser app, which prompts when an app tries to elevate privs.

On Fri, Jun 26, 2009 at 4:06 PM, Mike Wolfsonmwolf...@gmail.com wrote:

 I know the Magic phone I got at IO is unlocked, but it doesn't have
 root enabled out of the box (I tried to install an app that required
 Root, that wouldn't work).

 Is there a specific way I can enable root on the phone (ie. a setting
 some where)?  Is this possible on this phone?

 I know I can flash a new ROM (which I will be doing at some point
 anyway, as I want to try some of the alternatives for the phone), but
 I am looking for something quicker and easier.  .
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Proper use of getChildrenCursor(Cursor c) with SQLite

2009-06-26 Thread Musashi Baka

Greetings,

I am attempting to use use a SimpleCursorTreeAdapter to display to two
tables (Parent, Child) in a
sqlite database.  When I extend the SimpleCursorTreeAdapter I pass it
a cursor referencing all
of the root group nodes to be displayed, which is currently display
correctly. Yet, I am confused over
how to use the getChildrenCursor method.

I initially thought I should return a cursor referencing a table
containing the root node id (_id) and the
child nodes corresponding text (description), yet when doing so it
displays all the child nodes text
under each root node.

Is the getChildrenCursor method the only function required for
displaying child nodes? If so, is there
a particular format (i.e. columns) that are required to properly
display child nodes appropriately?

Below is a brief example of what I am attempting to do:

Table: parent (_id int, name text)
   [ 1, George Washington], [2, Franklin Roosevelt]

Table: child (_id int, name text)
  [ 1, Augustine Washington], [2, Anna Roosevelt], [3,
John Roosevelt]

The above tables should be displayed as:
+ George Washington
   - Augustine Washington
+ Franklin Roosevelt
   -Anna Roosevelt
   -John Roosevelt

Yet is displayed as:
+ George Washington
   - Augustine Washington
   -Anna Roosevelt
   -John Roosevelt
+ Franklin Roosevelt
   - Augustine Washington
   -Anna Roosevelt
   -John Roosevelt

Any help would be greatly appreciated. Thanks in advance.

MB
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Please Help! I Can't get the ADT Plugin to Install

2009-06-26 Thread Jose Ayerdis
Well i experience a problem creation Android XMl so i create just an XMl
close it and Reopen and got it just fine.

2009/6/26 Raphael r...@android.com


 On Wed, Jun 24, 2009 at 3:52 AM, Pamplemousse
 Mk2pamplemousse@gmail.com wrote:
 
  Hello,
 
  ADT 0.9.1 worked fine with Eclipse 3.4 until today. Eclipse asks me
  for updates. So I accept the updates and now ADT can't open the XML
  res files of my current projects.
 
  Is ADT not compatible with updated Eclipse 3.4.2?

 ADT should work just fine with Eclipse 3.4.2

 R/


 
  On 22 juin, 16:25, Sander sanderpos...@yahoo.com wrote:
  It did not work for me either when I used the update site. And I do
  not have a classic but the WTP version of Ganymede.
  In the end I downloaded the archive fromhttp://
 developer.android.com/sdk/adt_download.html
  and I installed from a local archive.
  This worked without problems. Would be nice if the SDK had an eclipse
  directory with this ZIP archive inside.
 
  On May 6, 3:34 am, J justinssh...@gmail.com wrote:
 
   I get this error no matter which of the 3 methods I try. What should I
   do?
 
   An error occurred while collecting items to be installed
 No repository found containing: org.eclipse.draw2d/osgi.bundle/
   3.4.1.v20080910-1351
 No repository found containing: org.eclipse.emf.common/osgi.bundle/
   2.4.0.v200808251517
 No repository found containing: org.eclipse.emf.ecore/osgi.bundle/
   2.4.1.v200808251517
 No repository found containing: org.eclipse.emf.ecore.change/
   osgi.bundle/2.4.0.v200808251517
 No repository found containing: org.eclipse.emf.ecore.edit/
   osgi.bundle/2.4.1.v200808251517
 No repository found containing: org.eclipse.emf.ecore.xmi/
   osgi.bundle/2.4.1.v200808251517
 No repository found containing: org.eclipse.emf.edit/osgi.bundle/
   2.4.1.v200808251517
 No repository found containing: org.eclipse.wst.common.emf/
   osgi.bundle/1.1.202.v200809111955
 No repository found containing:
   org.eclipse.wst.common.emfworkbench.integration/osgi.bundle/
   1.1.201.v200808071700
 No repository found containing: org.eclipse.wst.common.frameworks/
   osgi.bundle/1.1.200.v200805140020
 No repository found containing:
   org.eclipse.wst.common.project.facet.core/osgi.bundle/
   1.3.3.v200809102124
 No repository found containing: org.eclipse.wst.common.ui/
   osgi.bundle/1.1.301.v200805140415
 No repository found containing:
 org.eclipse.wst.sse.core/osgi.bundle/
   1.1.302.v200808260045
 No repository found containing: org.eclipse.wst.sse.ui/osgi.bundle/
   1.1.2.v200809120159
 No repository found containing: org.eclipse.wst.validation/
   osgi.bundle/1.2.2.v200809050219
 No repository found containing:
 org.eclipse.wst.xml.core/osgi.bundle/
   1.1.305.v200809120354
 No repository found containing: org.eclipse.wst.xml.ui/osgi.bundle/
   1.0.410.v200809120143
 
  
 

 



-- 
Atte

[[Jose Luis Ayerdis Espinoza]]
http://blognecronet.blogspot.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Intent filters: how do I know which action to use?

2009-06-26 Thread Jonathan Daugherty

 You can find more about Intents and how to use them at
 http://developer.android.com/reference/android/content/Intent.html
 It also has a list of standard android Intent Actions.

 The list of Intents used by Google Apps can be found at
 http://developer.android.com/guide/appendix/g-app-intents.html

Thanks for the resources!

Since my original post I did figure out how to do what I want. On my
intent-filter element in AndroidManifest.xml, I needed these elements:

  action name=android.intent.action.CHOOSER
  action name=android.intent.action.SEND
  category name=android.intent.category.ALTERNATIVE
  category name=android.intent.category.SELECTED_ALTERNATIVE
  category name=android.intent.category.DEFAULT
  data mimeType=image/*

While it's useful to know about the individual action and category
types, it took what I think was far too much googling and trial and
error to figure out that the above was necessary to do what I needed.
Which is to say, I nearly had to hunt down the Gallery source code and
look at the Intent object it was creating.  Is this just the accepted
procedure in this case?  Or is there a better way to discern exactly
what it's going to take to match something Android is doing to the
intent-filter on my activity?

Thanks,

-- 
  Jonathan Daugherty

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---