[android-beginners] Re: Treo Pro skin now available for Android Emulator!

2008-08-27 Thread Tony S.

Thanks!


On Aug 27, 6:27 am, Tea Vui Huang [EMAIL PROTECTED] wrote:
 Treo Pro skin now available for Android 
 Emulator!http://teavuihuang.com/android

 To install, download and unzip QVGA-L-TreoPro.zip to the Android
 skin directory, e.g. C:\android-sdk-windows-0.9_beta\tools\lib\images
 \skins. To run the Android emulator with this Treo Pro skin, enter
 this on the command line: emulator -skin QVGA-L-TreoPro.
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: how to use webview to show lcoal javascript

2008-08-27 Thread Mark Murphy

anderson wrote:
 my main.xml :
 LinearLayout
   WebView android:id=@+id/mywebview
   Button
.
.
 and my code :
 
  webView1 = (WebView) findViewById(R.id.mywebview);
 
 there is an error message : R.id can't be solved
 i dont know why, since i already import android.view.View

R.id is referring to the R.java class that should be built for you 
automatically by the Android SDK build tools. Do you have an R.java 
class in your project, in the same Java package as the class where 
you're referring to R.id?

If the class does not exist anywhere, there may be a problem in how you 
are compiling the code.

If the class exists but is in a different package, and that is not what 
you intended, determine which is incorrect (the R.java location or the 
location of your source code) and adjust your file locations and 
AndroidManifest.xml and build.xml/your Eclipse project to match.

If the class exists and is in the same package, but the compiler isn't 
finding it...I'm not sure what would cause that.

 in the html i should write
 script type=text/javascript src=my.js
 
 or
 
 script type=text/javascript src=file:///android_asset/my.js

I have no idea -- I haven't tried this with WebView.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
Warescription: All titles, revisions,  ebook formats, just $35/year

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] problems executing shell commands

2008-08-27 Thread spinifu

Hello,

Executing sqlite3 command doesn't do anything. I execute it from the
adb shell after the application has been launched, isn't that right?
also i try .databases but it won't work either. I´m programming on
Windows, so i guess that .databases should be databases, which won't
work.
Do i have to configure something? These commands don't show up in the
bin folder...i don't know if they should,  i just let you know.

Thanks a lot in advance, cheers.

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Android SMS

2008-08-27 Thread Sylvester Steele

thanks

Megha Joshi wrote:
 2008/8/26 Sylvester Steele [EMAIL PROTECTED]

 
  Hi,
  this might seem silly, but I can't get the SMS app to work. Issues:
 
  1. Can't type in the To field. Worked around by selecting a contact
  from the addressbook.
  2. Can't type a message! How do I select the Open keyboard to compose
  message and actually type in?


 For both issues, the answer is you need to press KEYPAD_7, F11, KEYPAD_9 or
 F12 key to simulate opening the keyboard before you can type anything ...




 
  Thanks,
  Sylvester
  
 
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Android SMS

2008-08-27 Thread Sylvester Steele

is there a way to type, while keeping it vertical?

Sylvester

On Aug 27, 8:36 pm, Sylvester Steele [EMAIL PROTECTED]
wrote:
 thanks

 Megha Joshi wrote:
  2008/8/26 Sylvester Steele [EMAIL PROTECTED]

   Hi,
   this might seem silly, but I can't get the SMS app to work. Issues:

   1. Can't type in the To field. Worked around by selecting a contact
   from the addressbook.
   2. Can't type a message! How do I select the Open keyboard to compose
   message and actually type in?

  For both issues, the answer is you need to press KEYPAD_7, F11, KEYPAD_9 or
  F12 key to simulate opening the keyboard before you can type anything ...

   Thanks,
   Sylvester
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Problem installing apk files into emulator

2008-08-27 Thread Xavier Ducrohet
On Wed, Aug 27, 2008 at 8:11 AM, [EMAIL PROTECTED] 
[EMAIL PROTECTED] wrote:

 W/PackageParser(   48): /data/app/vmdl21575.tmp (at Binary XML file
 line #5): activity does not specify android:name


This looks like your problem.

Xav

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: problem wid the sdcard

2008-08-27 Thread Megha Joshi
Did you load the sdcard to emulator? for detailed instructions see the link
below:
http://code.google.com/android/reference/emulator.html#sdcard

How do you view the files in emulator?
The emulator does not have a file browser...you will have to use File
Explorer in DDMS:
http://code.google.com/android/reference/ddms.html

2008/8/27 immu [EMAIL PROTECTED]


 Hi
  i have add some files(jpeg/mp3) in sdcard image, but  i am
 unable to see them from Emulator

 can any one  help me...plzz

 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Problem installing apk files into emulator

2008-08-27 Thread Ralf

Is this by any chance a package compiled for M3 or M5 that you're
trying to deploy on the 0.9 SDK?

R/

On Wed, Aug 27, 2008 at 1:10 PM, Xavier Ducrohet [EMAIL PROTECTED] wrote:
 On Wed, Aug 27, 2008 at 8:11 AM, [EMAIL PROTECTED]
 [EMAIL PROTECTED] wrote:

 W/PackageParser(   48): /data/app/vmdl21575.tmp (at Binary XML file
 line #5): activity does not specify android:name

 This looks like your problem.

 Xav


 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---