[android-beginners] Re: Marketplace question

2009-01-22 Thread Josh Dobbs
Handango and mobihand also sell android applications. On Wed, Jan 21, 2009 at 11:48 AM, Mark Murphy wrote: > > Ivan Soto wrote: > > 1) Does the marketplace currently allow developers to charge for > their > > apps? > > Not yet. Sometime this quarter, reportedly. There are a plethora -- na

[android-beginners] Re: Unlocked Phone Question

2009-01-22 Thread bindu rao
Hello: All that it means is that you can use another GSM network / SIM card such as Cingular / ATT in US, or another GSM network anywhere in the world. You cannot use Verizon or Sprint (they don't have a SIM cards anyway) or other such CDMA based networks. Also, you need a SIM card for a network w

[android-beginners] Problem playing remote AMR audio using MediaPlayer

2009-01-22 Thread bindu rao
Hello All: I don't have a clear example of playing audio from remote server. My code is as follows: mMp = new MediaPlayer(); if (mMp == null) { Log.d(TAG, "Mediaplayer creation returns null"); } mMp.setDataSource(url); //mMp.setAudioStreamType

[android-beginners] Re: sqlite database

2009-01-22 Thread jaimin mehta
ok i will tell u when i am done thanks. jaimin On Fri, Jan 23, 2009 at 11:05 AM, snehal kedar wrote: > refer this > > > http://davanum.wordpress.com/2007/12/11/android-how-to-poke-around-the-sqlite3-databases/ > > install bysybox .. let me know if u can get thru > > > On Fri, Jan 23, 2009 at 10:

[android-beginners] Re: sqlite database

2009-01-22 Thread snehal kedar
refer this http://davanum.wordpress.com/2007/12/11/android-how-to-poke-around-the-sqlite3-databases/ install bysybox .. let me know if u can get thru On Fri, Jan 23, 2009 at 10:59 AM, jaimin mehta wrote: > yes i have created database useing sqlite3 command. > here is my code > > public static f

[android-beginners] Re: sqlite database

2009-01-22 Thread jaimin mehta
yes i have created database useing sqlite3 command. here is my code public static final String KEY_TITLE = "title"; public static final String KEY_BODY = "body"; public static final String KEY_ROWID = "_id"; private static final String TAG = "NotesDbAdapter"; private DatabaseHelpe

[android-beginners] Re: sqlite database

2009-01-22 Thread snehal kedar
jaimin, tell me how did u create the database. if u have created using the sqlite commands it sure must b present . On Fri, Jan 23, 2009 at 10:48 AM, jaimin mehta wrote: > i tried also that code which u suggested but it also not work .error is > data base is not found ? so any other solution? > >

[android-beginners] Re: sqlite database

2009-01-22 Thread jaimin mehta
i tried also that code which u suggested but it also not work .error is data base is not found ? so any other solution? thanks. jaimin On Thu, Jan 22, 2009 at 6:15 PM, snehal kedar wrote: > yes u can see the database > from command prompt > > adb shell > #sqlite3 > #.tables > > On Thu, Jan 22,

[android-beginners] sqlite3 dabase

2009-01-22 Thread jaimin
hi. i am new to android . i tried to view my databse on the command line but i didnt succeed below is my code and my android project is in comouter's D:android/ project folder . adb shell #sqlite3 #.tables but it didn't work so nay other idea? thanks. jaimin --~--~-~--~~--

[android-beginners] Re: How can I create dynamic number of radio buttons in Radio Group?

2009-01-22 Thread bindu rao
Hello: Yes, I did, and it seems to work. I created a RadioGroup in the layout file and then programmatically added buttons to it: public void makeRadioButtons(Vector tmpVector, int i, LinearLayout.LayoutParams lp) { RadioButton rb = new RadioButton(this); rb.setText((St

[android-beginners] Re: How can I create dynamic number of radio buttons in Radio Group?

2009-01-22 Thread James Yum
Hi, Have you tried adding buttons programatically to an empty RadioGroup? Cheers, James On Wed, Jan 21, 2009 at 7:37 PM, BRR wrote: > > Hello All: > > I need to create a variable / dynamic (data driven) number of radio > buttons in a Radio Group. > In particular, the id also perhaps needs to b

[android-beginners] Android on HTC VOGUE (TOUCH)

2009-01-22 Thread mane1177
Hello, I would like to install android on my Pda Htc, but i´m finding some dificulties... i´ll tried a instalation by a cab file but my pda stays all white, can you help me?? Thanks Manuel --~--~-~--~~~---~--~~ You received this message because you are

[android-beginners] Unlocked Phone Question

2009-01-22 Thread Madjack
I'm wondering about the unlocked phone carrier requirement. (See unlocked phone details at http://android.brightstarcorp.com/) It says I can put any SIM card into the device. Does this mean I can take the SIM card out of a phone from a network other than T-1 Mobile (i.e. Sprint, Verizon, etc.) an

[android-beginners] Re: android build problems

2009-01-22 Thread sabrod
i'm having the same error, here on opensuse 11. --~--~-~--~~~---~--~~ 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 th

[android-beginners] Re: sqlite database

2009-01-22 Thread snehal kedar
yes u can see the database from command prompt adb shell #sqlite3 #.tables On Thu, Jan 22, 2009 at 6:05 PM, jaimin wrote: > > plz give me some suggestion to view my sqlite database . > i have done notepad on android and now i wan to see my database so how > can i see my database? > from the s

[android-beginners] Out put is not shown on Emulator

2009-01-22 Thread wajid.ku2...@gmail.com
I have downloaded android sdk and added plugin in eclipse and successfully created a Hello Android project problem is that emulator do not show the out put string can any one help me in for the out put? thanks in advance --~--~-~--~~~---~--~~ You received this mess

[android-beginners] Radio's Diabetes Companion Alpha 2 released at the Android MarketPlace

2009-01-22 Thread radiolistener
Hi All, I released my second Alpha version of RDC. In this version there is the ability to export the data into .csv on the memory card. Allowing you to then mount the card and see your data in any spreadsheet program. There is also sorting of the main list. You can sort on either the date/ti

[android-beginners] setContentView Strangeness

2009-01-22 Thread Coder One
The code below works great in that GameView comes up with a simple image. After user has selected the one and only menu option, I get the TextView with "Hello, Earth" as appropriate. The problem I have is if in onCreate(), I setContentView(TextView) and not GameView. In this case, user is shown

[android-beginners] How can I create dynamic number of radio buttons in Radio Group?

2009-01-22 Thread BRR
Hello All: I need to create a variable / dynamic (data driven) number of radio buttons in a Radio Group. In particular, the id also perhaps needs to be dynamically generated. All examples, including Android RadioGroup1.java show the use of statically defined fixed number of radio buttons. Even th

[android-beginners] Re: Export to sim somewhat working...

2009-01-22 Thread Greg
Thanks for the info, ill head over there and make a post. On Jan 21, 10:44 pm, Jamie wrote: > This group is for application development using the SDK, not changes > or source-code development.  You will have better luck posting this > @http://groups.google.com/group/android-internals Good luck!

[android-beginners] Re: Cant view images

2009-01-22 Thread Mark Murphy
myIP wrote: > When I try to view an image (any image) in the emulator, I get a pop- > up with the following message: > > "Sorry! The application Camera (process com.android.camera) has > stopped unexpectedly. Please try again." > > > Again, all I am trying to do is view an image. Any suggest

[android-beginners] Cant view images

2009-01-22 Thread myIP
When I try to view an image (any image) in the emulator, I get a pop- up with the following message: "Sorry! The application Camera (process com.android.camera) has stopped unexpectedly. Please try again." Again, all I am trying to do is view an image. Any suggestions? --~--~-~--~---

[android-beginners] Re: Identifying user's phone or device model

2009-01-22 Thread mathiastck
I like: http://code.google.com/android/reference/android/os/Build.html The constant String Build.DEVICE is "dream" on the handset in front of me, the emulator returns "generic" On Jan 22, 1:57 pm, UBZack wrote: > Does anyone know of a method or a class that can give information > about the use

[android-beginners] Identifying user's phone or device model

2009-01-22 Thread UBZack
Does anyone know of a method or a class that can give information about the user's device model? For example, if the user's using a G1, this method might return a string or constant "G1". Thanks for any help you can give. --~--~-~--~~~---~--~~ You received this me

[android-beginners] Error displaying JPEG image thumbnails

2009-01-22 Thread Bamboo
I'm currently having problems displaying camera images as thumbnails. I use the following code when I am taking the camera photo... String filename = timeStampFormat.format(new Date()); ContentValues values = new ContentValues(); values.put(Media.TITLE, filename); values.put(Media.DESCRIPTION, "n

[android-beginners] Re: Detecting when a map view has been scrolled...

2009-01-22 Thread Scynasty
there are many ways to detect this. i know you can place a map overlay which runs an onTouchEvent to get the x and y scroll but it will only give you the distance you moved in x and y values in about .1 seconds and then it will rerun and give you another set of x and y distance moves. You can get

[android-beginners] Re: Pattern screen locking

2009-01-22 Thread Raymond C. Rodgers
I was afraid of that... Thanks! Raymond Scynasty wrote: > i dont believe anything like that exists. > the best thing to do is build a custom class which will do it > > On Jan 22, 1:51 pm, Raymond Rodgers wrote: > >> Is there a class or set of classes that will allow one to implement a >> visu

[android-beginners] Re: Return to initial activity from dialer

2009-01-22 Thread Scynasty
you might be able to run a background activity which intercepts the end button when there is a call being made and ends the call as well as returns to the activity but i havent seen any intents which do that On Jan 22, 11:01 am, Bamboo wrote: > I am currently calling the dialer from within my ac

[android-beginners] Re: Pattern screen locking

2009-01-22 Thread Scynasty
i dont believe anything like that exists. the best thing to do is build a custom class which will do it On Jan 22, 1:51 pm, Raymond Rodgers wrote: > Is there a class or set of classes that will allow one to implement a > visual pattern locking system similar to what can be used for locking > the

[android-beginners] Pattern screen locking

2009-01-22 Thread Raymond Rodgers
Is there a class or set of classes that will allow one to implement a visual pattern locking system similar to what can be used for locking the phone itself? I would like to use something similar as an alternative to entering a password, and I haven't seen [yet] any class for doing so. I thoug

[android-beginners] Return to initial activity from dialer

2009-01-22 Thread Bamboo
I am currently calling the dialer from within my activity using the following code Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.withAppendedPath(Phones.CONTENT_URI, contactId)); startActivity(intent); is it possible to return to my activity once the call has ended? --~--~--

[android-beginners] Re: Common functionality between activities

2009-01-22 Thread madcoder
Sweet, I'm modding a program tonight because of this concept! --~--~-~--~~~---~--~~ 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 unsubs

[android-beginners] Re: ebook

2009-01-22 Thread Odessa Silverberg
On Jan 20, 9:29 pm, "Mark Murphy" wrote: > While I don't presume to speak on behalf of the authors of those books, > those links appear to point to illegal copies. I am not aware of any of > those books being freely distributed in ebook form. Well AndBook is a free eBook, but it's not quite as g

[android-beginners] Running Terminal Emulator (Term.apk)

2009-01-22 Thread Lutz Schönemann
Hi, I've found that there is a terminal emulator installed on the Android emulator. The thing is that there is no launcher icon. Is there a way to run an app that is not listed in the launcher list? Lutz smime.p7s Description: S/MIME cryptographic signature

[android-beginners] Client server Architecture in Android

2009-01-22 Thread shobhit.kasli...@gmail.com
Hello I am trying to build an application just in location learning and I am using google maps to display user's current location and places around user and when user click on any of the available icon (overlay on Map) it will display the information (text, picture and video) from the database but

[android-beginners] Re: ebook

2009-01-22 Thread Odessa Silverberg
Android a programmers guide: While this is a quite good book (especially the part about ContentProviders), it's outdated and many of the examples can't be done with the current SDK. It's a shame, authors dare to release books about beta versions of an SDK/Framework, instead of waiting until it's r

[android-beginners] sqlite database

2009-01-22 Thread jaimin
plz give me some suggestion to view my sqlite database . i have done notepad on android and now i wan to see my database so how can i see my database? from the shell? if yes than how? and if no than what else? thans. jaimin --~--~-~--~~~---~--~~ You received this

[android-beginners] Re: sqlite database

2009-01-22 Thread jaimin mehta
i am trying with the shell option but it will give me error data not found .so plz tell me what to do? On Thu, Jan 22, 2009 at 5:13 PM, Odessa Silverberg < silverberg.ode...@googlemail.com> wrote: > > Either make an activity which runs a query and gets the cursor and > display it or use the shell

[android-beginners] Re: Common functionality between activities

2009-01-22 Thread Odessa Silverberg
You can also extend the MapActivity. Basicly you can extend any of the default activities and views, unless they are marked as "final class", which can't be extended. MapActivity: http://code.google.com/intl/de/android/reference/com/google/android/maps/MapActivity.html It says "com.google.androi

[android-beginners] Re: sqlite database

2009-01-22 Thread Odessa Silverberg
Either make an activity which runs a query and gets the cursor and display it or use the shell to directly access it. For the shell simply start type "adb shell" into your commandline/ shell and you're connected with the emulator via shell. Then simply do an cd /data/data//databases sqlite3 an

[android-beginners] sqlite database

2009-01-22 Thread jaimin
i am new to android. i have done notepad in android and i use sqlite database . now i put some notes in my notepad.now how can i see the database of my notepad? can anyone tell me? thanks. jaimin --~--~-~--~~~---~--~~ You received this message because you are subs

[android-beginners] Re: how do i browse the android source code in windows vista

2009-01-22 Thread for android
http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=core/java;h=4cb43976b8f642ddda2d5482cbd625c07c2511fd;hb=HEAD On Thu, Jan 22, 2009 at 3:43 AM, shobhit.kasli...@gmail.com < shobhit.kasli...@gmail.com> wrote: > > Hi while running my android application I am getting the error "

[android-beginners] Re: how do i browse the android source code in windows vista

2009-01-22 Thread OC
Hi. I installed a KUbuntu in VMWare and followed the steps explained at http://source.android.com/download for getting the source. (Maybe you can get the source any other way, I don't know) If you have the source, take the following folders list of folders and copy them at your ANDROID-SDK loc