[android-beginners] Getting text of dynamically created radio buttons

2010-06-18 Thread Maxood
How can i retrieve the text of a dynamically created radio button
selected by the user? Here's my code:

RadioGroup radiogroup = (RadioGroup) findViewById(R.id.rdbGp1);
// layout params to use when adding each radio button
LinearLayout.LayoutParams layoutParams = new
RadioGroup.LayoutParams(
RadioGroup.LayoutParams.WRAP_CONTENT,
RadioGroup.LayoutParams.WRAP_CONTENT);

 for (int i = 0; i < 4; i++){
final RadioButton newRadioButton = new RadioButton(this);
c3 = db.getAns(3);

for (int j=0;jhttp://stackoverflow.com/questions/tagged/android

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: Getting text of dynamically created radio buttons

2010-06-22 Thread Maxood
Thanks. I'm making a quiz app and once completed, i'll blog it with a
tutorial on:
http://www.maxood-android-corner.blogspot.com/

You are welcome to subscribe on my blog.


On Jun 18, 7:23 am, Mikey  wrote:
> I have taken a look at the API reference, and getText() looks like it might 
> be what you need...
>
> On 18 Jun 2010, at 15:11, Maxood wrote:
>
>
>
> > How can i retrieve the text of a dynamically created radio button
> > selected by the user? Here's my code:
>
> > RadioGroup radiogroup = (RadioGroup) findViewById(R.id.rdbGp1);
> >        // layout params to use when adding each radio button
> >        LinearLayout.LayoutParams layoutParams = new
> > RadioGroup.LayoutParams(
> >                RadioGroup.LayoutParams.WRAP_CONTENT,
> >                RadioGroup.LayoutParams.WRAP_CONTENT);
>
> > for (int i = 0; i < 4; i++){
> >            final RadioButton newRadioButton = new RadioButton(this);
> >            c3 = db.getAns(3);
>
> >        for (int j=0;j >            c3.moveToNext();
> >           label = c3.getString(0);
>
> >        newRadioButton.setText(label);
> >        newRadioButton.setId(6);
> >        radiogroup.addView(newRadioButton, layoutParams);
>
> > Waiting for the reply,
> > Maqsood
>
> > --
> > 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 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

-- 
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 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: Approach to learning android

2010-06-24 Thread Maxood
All you need is to concentrate on Java programming. There are lot of
good book available in the market to learn Java. One of them is Ivor
Horton's book on wrox (http://www.wrox.com). Another one is Java -How
to program by Deitel & Deitel (http://www.deitel.com/).

Also get hold of Mark Murphy's book: http://www.commonsware.com/

On Jun 21, 3:10 pm, Justin Anderson  wrote:
> That is because both Java and C++ are object oriented...  I would think your
> first step would be to do a quick Google search and learn some Java basics.
> You don't need to learn anything related to Java GUI components because
> Android doesn't use those but most everything else would be good knowlege
>
> --
> There are only 10 types of people in the world...
> Those who know binary and those who don't.
> --
>
>
>
> On Mon, Jun 21, 2010 at 4:03 PM, Keith Roberts  wrote:
> > ok that helps!  i think my biggest issue was with understanding the
> > small syntax things that are different from other languages.
> > conceptually it seems very similar to c++.
>
> > thanks
>
> > On Jun 21, 5:56 pm, Temitope Akinwande  wrote:
> > > I am not sure how you can do that as Android is based on Java and not
> > > JavaScript.
> > > If you already have some c++ experience, the switch to Java should not
> > > be too difficult.
>
> > > You could buy some books or you could check out this linkhttp://
> >www.javabeginner.com/learn-java/introduction-to-java-programming
> > > Most of the topics won't be necessary for Android development but they
> > > are good to know as a Java programmer.
>
> > > -Tope
>
> > > On Mon, Jun 21, 2010 at 2:51 PM, Keith Roberts 
> > wrote:
> > > > I'm not familiar with javascript but I do have a strong background in
> > > > fortran and some c++, so im not completely new to the programming
> > > > world.  However,  I would like to know a good tutorial to understand
> > > > the javascript used on the android platform besides the one that's on
> > > > the sdk site?  I find those tutorials a little too much for a
> > > > beginner.  Or better yet, what do you think would be the best way to
> > > > learn android if you have no experience in javascript?
>
> > > > Thanks,
>
> > > > keith
>
> > > > --
> > > > 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 unsubscribe from this group, send email to
> > > > android-beginners+unsubscr...@googlegroups.com > > >  i...@googlegroups.com>
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/android-beginners?hl=en
>
> > --
> > 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 unsubscribe from this group, send email to
> > android-beginners+unsubscr...@googlegroups.com > i...@googlegroups.com>
> > For more options, visit this group at
> >http://groups.google.com/group/android-beginners?hl=en

-- 
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 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:Image Not Displayed In WebView

2010-06-30 Thread Maxood
I have placed my image login_button.png in assets folder. Here's my
code:


WebView content =(WebView)findViewById(R.id.book_content);
content.loadData("","text/html", "utf-8");

I'm getting page not found on emulator. Where am i wrong precisely?

-- 
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 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: iPhone , Android and Mobile Web, Making friends and looking for coorperation

2010-07-08 Thread Maxood

Hi Robert,
Avenue Social is a firm dedicated to design e-business strategies for
people like you. We specialize in developing software for the Social
Media. Having developed applications for Facebook and smartphones, we
have a number of apps in the iPhone and Android app store. Feel free
to search us with name of Feelsocial and download our apps on various
topics from the iPhone and Android app store.

http://www.avenuesocial.com/
http://www.socialjitney.com/

Maqsood
http://twitter.com/maxood

On Jul 7, 10:49 pm, Robert Lin  wrote:
> Hi there, I'm Robert Lin, CEO of Gava (International) Group Co.,Ltd
> which exports Chinese products and develops applications based on
> XUL.  I'm looking forward to setting up a new company which develops
> apps for mobiles and making friends with you guys. I have team,
> technology and good ideas and thoughts. Pls contact me if we have
> something to cooperate with, or if you are also a big enthusiast on
> mobile devices . rob...@gava-group.com

-- 
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 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: setting age

2010-07-13 Thread Maxood
How about using Radio Buttons? Just assign age goups (eg. 20-30 years)
instead of precise age.
Another option could be a drop down list?...what do you say.

Maqsood

http://www.twitter.com/maxood

On Jul 9, 6:19 pm, Emmen Farooq  wrote:
> Im making an app which would have to get users age , now what would be
> the appropriate control ? I have to make something like a scroll with
> numbers in it , but the user shouldnt " enter from the keyboard " , he
> should have something to select from , many thanks indeed

-- 
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 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 Installation Issue

2009-08-06 Thread Maxood

I am a newbie and like to do development on android. I have just
downloaded, unzipped the SDK and installed it. When i type 'emulator'
on the command prompt i recieve the following error:

emaulator: ERROR: You did not provide the name of Android Virtual
Device with the '-avd ' option. Read -help-avd for more
information.

Please resolve and let me know what to do about it.

Thank you,
Maqsood

--~--~-~--~~~---~--~~
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] Operating Systems supported by Android Apps

2009-08-11 Thread Maxood

What operating systems are supported by Android Operating Systems? On
what platforms we can deploy Android apps

Thanks

Maxood
--~--~-~--~~~---~--~~
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] Multi-threading

2009-08-11 Thread Maxood

Does Android support multi-threading?
--~--~-~--~~~---~--~~
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: Operating Systems supported by Android Apps

2009-08-12 Thread Maxood

Dear Yusuf
I just like to know whether we can deploy android apps on other
smartphones like Windows Mobile, iPhone, BlackBerry,Symbian, etc. Are
there any compatibility issues?

On Aug 12, 2:57 am, "Yusuf T. Mobile"  wrote:
> Also FWIW, Ubuntu plans to be able to run Android apps in their
> upcoming Karmic Koala release this fall.
>
> Yusuf Saib
> Android
> ·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 Aug 11, 9:33 am, midtoad  wrote:
>
>
>
> > Maybe I'm missing something, but... your Android apps run on the
> > Android operating system.
>
> > While there are some experimental releases of 'live Android' CDs that
> > allow you to boot up a regular PC into the Android OS, up to now the
> > only commercially available devices that run Android are cellphones.
> > Soon however there will be Android-powered 'smartbooks', i.e. devices
> > that are somewhere between netbooks (small, internet-focused
> > notebooks) and cellphones.
>
> > On Aug 11, 9:01 am, Maxood  wrote:
>
> > > What operating systems are supported by Android Operating Systems? On
> > > what platforms we can deploy Android apps
--~--~-~--~~~---~--~~
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] Simple Google Maps App

2009-08-12 Thread Maxood

I like to develop a simple Google maps application.

Please let me know any tutorial available

Thank you,
Maqsood
--~--~-~--~~~---~--~~
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] Procedure to obtain Google Maps API key

2009-08-13 Thread Maxood

Could someone guide me step by step on how to obtain a Google Maps API
key. I am developing a simple Google Maps app for the first time.

Thanks,
Maqsood
--~--~-~--~~~---~--~~
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: Simple Google Maps App

2009-08-17 Thread Maxood

Is there any good book available on developing google map
applications. Or if i am able to access any excerpt from any book on
android development about google maps.

Thank you for the information,
Maqsood

On Aug 13, 8:09 pm, Jack Ha  wrote:
> You will find quite a few tutorials at this link as well:
>
>    http://www.anddev.org/viewforum.php?f=18
>
> --
> Jack Ha
> 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 Aug 12, 11:33 pm, Maxood  wrote:
>
>
>
> > I like to develop a simple Google maps application.
>
> > Please let me know any tutorial available
>
> > Thank you,
> > Maqsood
--~--~-~--~~~---~--~~
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] A Google Maps App

2009-08-17 Thread Maxood

I want to write an app involving Google Maps API. I want my user to
enter the name of a place where he is in a textbox and then enters the
name of his desired destination in another textbox. Once he clicks the
button after that, the required map gets displayed.

I have 2 questions here:

Is it possible to make such an app on android?

I guess the android can auto-detect where the user is..am i correct?

Thank you,
Maqsood


--~--~-~--~~~---~--~~
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] Flash based games on Android

2009-08-21 Thread Maxood

I want to develop and application that will be a clone of flash based
online game. I need to know what resources would i require as a
beginner. I like to start off with small games. Please let let me know
about tutorials, articles, books, etc.

Thanks,
Maxood
--~--~-~--~~~---~--~~
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: Flash based games on Android

2009-08-21 Thread Maxood

Please also tell me how can i integrate a flash app on android. Can i
do that in the first place. I have also come to know that android
supports flash 10.

On Aug 21, 6:45 pm, Maxood  wrote:
> I want to develop and application that will be a clone of flash based
> online game. I need to know what resources would i require as a
> beginner. I like to start off with small games. Please let let me know
> about tutorials, articles, books, etc.
>
> Thanks,
> Maxood
--~--~-~--~~~---~--~~
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: A Google Maps App

2009-08-27 Thread Maxood

I have achieved to have both satellite and street view in my app. I
want to have live photographic images to be displayed in my app as
well. I am talking about images shown on the page maps.google.com once
you drop on a particular location. Please go maps.google.com and use
it and tell me how can i incorporate live pictures of streets zoomed
as if i am standing there.
Thanks for the information Wayne,
Maqsood

On Aug 18, 11:02 pm, Wayne Wenthin  wrote:
> I'm sure it's possible.   But a word of Warning.   If you have never
> programmed for the Android platform you are in for a really steep learning
> curve dealing with mapviews.   I'm working on about 8 months and I still get
> surprised at least once a week.  But then I could just be slow and old
> too
>
>
>
>
>
> On Mon, Aug 17, 2009 at 10:30 PM, Maxood  wrote:
>
> > I want to write an app involving Google Maps API. I want my user to
> > enter the name of a place where he is in a textbox and then enters the
> > name of his desired destination in another textbox. Once he clicks the
> > button after that, the required map gets displayed.
>
> > I have 2 questions here:
>
> > Is it possible to make such an app on android?
>
> > I guess the android can auto-detect where the user is..am i correct?
>
> > Thank you,
> > Maqsood
>
> --
> Writing code is one of few things
> that teaches me I don't know everything.
--~--~-~--~~~---~--~~
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] Open GL Programming for a Starter on Android

2009-08-28 Thread Maxood

I am interested to develop android applications in Open GL. I have
come across with the following web page on Open GL apps written in C
language:

http://www.opengl.org/resources/code/samples/redbook/

Wonder if someone can guide me to convert them into Java so that they
can run on android. Also please provide me with a link on Android Open
GL tutorial.

Thanks,
Maqsood


--~--~-~--~~~---~--~~
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: Open GL Programming for a Starter on Android

2009-08-30 Thread Maxood

Wow seems like an exciting game...good work. Wonder if the source code
is available. I have never programmed in Open GL on Android. Please
provide either source code or links to other tutorials.

Thanks,
Maxood

On Aug 28, 7:45 pm, Aki  wrote:
> Hi
> Maxood
>
> not complete but almost i've converted.
> check here.http://code.google.com/p/akjava-android-project/
>
> but these coder is for android 1.1
>
> aki
>
> On 8月28日, 午後10:38, Maxood  wrote:
>
>
>
> > I am interested to develop android applications in Open GL. I have
> > come across with the following web page on Open GL apps written in C
> > language:
>
> >http://www.opengl.org/resources/code/samples/redbook/
>
> > Wonder if someone can guide me to convert them into Java so that they
> > can run on android. Also please provide me with a link on Android Open
> > GL tutorial.
>
> > Thanks,
> > Maqsood
--~--~-~--~~~---~--~~
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] Showing directions or drawing required path on Google Maps

2009-08-31 Thread Maxood

Is it possible to draw required path or show directions on Google Maps
on Android.Please provide detail and an example/tutorial.

Thank you,
Maxood
--~--~-~--~~~---~--~~
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] A Racing Car App in Android

2009-09-01 Thread Maxood

I want to develop an application that involves a racing car. The car
obviously moves forward, backward, left and right in a 3D environment.
I like to make such an app using OpenGL ES. Can someone refer me a
tutorial.

Thank you,
Maxood
--~--~-~--~~~---~--~~
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: A Racing Car App in Android

2009-09-02 Thread Maxood

These links would be quite informative and helpful in understanding
OpenGL on android.It seems like that lesson no. 10 caters to my
requirement.
Am i right?

Waiting for your reply,
Maxood

On Sep 2, 1:58 pm, Marc Lester Tan  wrote:
> try thishttp://nehe.gamedev.net/and someone already ported the tutorials
> to android herehttp://insanitydesign.com/wp/projects/nehe-android-ports/
>
> -Marc
>
>
>
> On Wed, Sep 2, 2009 at 1:48 AM, Maxood  wrote:
>
> > I want to develop an application that involves a racing car. The car
> > obviously moves forward, backward, left and right in a 3D environment.
> > I like to make such an app using OpenGL ES. Can someone refer me a
> > tutorial.
>
> > Thank you,
> > Maxood
--~--~-~--~~~---~--~~
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: A Racing Car App in Android

2009-09-02 Thread Maxood

There are errors in the Run.java file of Lesson 10. Also the
AndroidManifest.xml file contains error as well . Please look into
them.

Maxood

On Sep 2, 1:58 pm, Marc Lester Tan  wrote:
> try thishttp://nehe.gamedev.net/and someone already ported the tutorials
> to android herehttp://insanitydesign.com/wp/projects/nehe-android-ports/
>
> -Marc
>
>
>
> On Wed, Sep 2, 2009 at 1:48 AM, Maxood  wrote:
>
> > I want to develop an application that involves a racing car. The car
> > obviously moves forward, backward, left and right in a 3D environment.
> > I like to make such an app using OpenGL ES. Can someone refer me a
> > tutorial.
>
> > Thank you,
> > Maxood
--~--~-~--~~~---~--~~
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: A Racing Car App in Android

2009-09-02 Thread Maxood

Got them fixed. All apps are working fine.But still lesson10 does not
cater to my requirement, the square box in the app is not a 3D object.
Also i want it to move left and right as well

Maxood

On Sep 2, 4:15 pm, Maxood  wrote:
> There are errors in the Run.java file of Lesson 10. Also the
> AndroidManifest.xml file contains error as well . Please look into
> them.
>
> Maxood
>
> On Sep 2, 1:58 pm, Marc Lester Tan  wrote:
>
>
>
> > try thishttp://nehe.gamedev.net/andsomeone already ported the tutorials
> > to android herehttp://insanitydesign.com/wp/projects/nehe-android-ports/
>
> > -Marc
>
> > On Wed, Sep 2, 2009 at 1:48 AM, Maxood  wrote:
>
> > > I want to develop an application that involves a racing car. The car
> > > obviously moves forward, backward, left and right in a 3D environment.
> > > I like to make such an app using OpenGL ES. Can someone refer me a
> > > tutorial.
>
> > > Thank you,
> > > Maxood
--~--~-~--~~~---~--~~
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: Developing application in Android

2009-09-02 Thread Maxood

Post the exact and precise specifications of the project. What exactly
you want to develop on android. As you have worked with Java,
developing an android application will be no big deal for you. Android
supports Java2ME and Google's APIs.

If you need any help for the project or want to ask any question about
android development, just send me a message on maqs...@salsoft.net

Maqsood

On Aug 27, 9:42 pm, blixs  wrote:
> Hi!!
>
> I am a programmingstudet at the Norwegian It-University. Now in the
> second year we have a huge proyect where we have to develope a product
> to a event. To do it best we have to make an mobile application in the
> Android Platform. I have worked with Java, and want to develope me in
> this area, but I don't have experiencie about Android. Therefor, I'm
> looking for help here, what can I use for make the application and if
> exist an API. Do I need to get an Android-cellphone to test if it
> work, or can I emulate it in the computer?
>
> Best regards!
>
> 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] Real Estate & SEO

2009-09-03 Thread Maxood

Could someone give me any good ideas on apps for Real Estate industry
and SEO (Search Engine Optimization).
 Are there any apps on the app store or elsewhere on these subjects?

Maqsood
--~--~-~--~~~---~--~~
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 for Joggers & Walkers

2009-09-04 Thread Maxood

Does android detect the speed and direction of a person walking or
jogging. Can we make an android app for enthusiast walkers and joggers?
--~--~-~--~~~---~--~~
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 Phone

2009-09-06 Thread Maxood

Go for the HTC Hero from Motorola...its awesome! Or you can also
consider buying a TMobil G1 phone. There are other varieties as well.
I'm not sure whether about AT&T service though.
You may check their websites.

Maqsood

On Sep 5, 7:31 am, pdelaney  wrote:
> Hello;
> I have just begun developing for the Android phone and all of my test
> have been on the emulator.   I realize I need to get a real phone, but
> I am not sure which one I should get.  I have AT&T service and they do
> not have an Android phone to date only iPhone.
>
> Could someone recommend a phone that I may purchase that will allow me
> to test my application while also using it as a phone with my current
> AT&T service?
> Peter
--~--~-~--~~~---~--~~
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 tutorial

2009-09-06 Thread Maxood

Where are you based? Are you working by yourself or working with a
company?
I can also help you out for android development.

Maqsood

On Sep 4, 4:50 pm, Niamathullah sharief 
wrote:
> Hi friends,
>   This is my first step in android even first mail too. Please tell me where
> i can find the right tutorial to learn android in efficient way and in easy
> steps.
>   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: OpenGL ES application on WebView

2009-09-06 Thread Maxood

Hi Suneel,
  I also share the same requirement as you do. My app is about a
racing car moving in a 3D environment. If you have any clue about it
please let me know.

Thank you,
Maqsood

On Sep 5, 11:49 am, javame_android  wrote:
> Hi,
>
> I want to implement OpenGL ES application on WebView. Can the
> application be ported that way? I have an Applet Player which uses
> JOGL for rendering purpose and JavaScript for event handling. Now to
> port that application on Android I have completed rendering on
> GLSurfaceView. For event handling I need to replace the code of
> Javascript with something else. Can I call Javascript and parse it
> from my standalone application. Or I would have to use WebView class
> to use it.
>
> In case I need to use WebView for calling Javascript then can I draw
> opengl es on WebView. Any guidance would be of great help.
>
> Regards
> Sunil
--~--~-~--~~~---~--~~
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: OpenGL ES application on WebView

2009-09-08 Thread Maxood

I don't know either. Like to explore it. Although i have downloaded
DroidDraw to design UI for android.
I wonder if you are aware of it. If not then check http://www.droiddraw.org/

Can you tell me more about drawing Canvas through onDraw method?

Thanks,
Maxood

On Sep 7, 12:30 am, javame_android  wrote:
> Hi,
>
> I have not been successful yet. But I am looking forward to use onDraw
> (Canvas canvas) method for drawing purpose. Do you know can we use
> Canvas to make Opengl ES drawing?
>
> Any help would be appreciated.
>
> Regards
> Sunil
--~--~-~--~~~---~--~~
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] Jigsaw Puzzle Game on Android

2009-09-12 Thread Maxood

I am looking forward to develop to develop a Jigsaw puzzle game on
Android. Could someone guide me through?

Thanks,
Maxood
--~--~-~--~~~---~--~~
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: Real Estate & SEO

2009-09-22 Thread Maxood

Culd you provide me with some ideas for SEO apps on android. Alos how
can we use Google Maps for making an app on real estate for end users/
consumers.

Maqsood
On Sep 4, 6:52 am, Jerry Schrader  wrote:
> What exactly are you looking for? As far as SEO, I could help you walk
> through that, but what do you mean for other apps?
>
>
>
> On Thu, Sep 3, 2009 at 4:24 AM, Maxood  wrote:
>
> > Could someone give me any good ideas on apps for Real Estate industry
> > and SEO (Search Engine Optimization).
> >  Are there any apps on the app store or elsewhere on these subjects?
>
> > Maqsood
--~--~-~--~~~---~--~~
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] Golf App for Android

2009-09-29 Thread Maxood

Could someone provide me a link on a good Golf application on android?
I am interested to look at the screenshots and its flow.
Wonder if we are able to find out elevation and/or wind speed through
a device. Is it possible with any of the phones in the market running
on android?
--~--~-~--~~~---~--~~
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: Golf App for Android

2009-09-29 Thread Maxood

How can we detect wind speed from a weather web service. Can you
suggest some good sites?

Also i have been informed that one is restricted by the United States
Golf Association and the Royal and Ancient Golf Association (the
ruling bodies of golf in the US and Europe) for using any device to
check atmospheric conditions as it is against the rules.Please check:

http://answers.yahoo.com/question/index;_ylt=AvIE5c3zE5fjluY9rd28i5vsy6IX;_ylv=3?qid=20090928235536AAVOKmx

Wonder if we can incorporate this feature in the app?Would it be
legal?

Also let me know how do you find TeeDroid:
http://www.teedroid.com/

Looking for valuable comments suggestions.Thank you
Maxood

On Sep 30, 12:11 am, "Yusuf Saib (T-Mobile USA)"  wrote:
> There's more than one Golf app. Golfzilla is 
> one:http://asia.cnet.com/crave/2008/07/08/google-maps-android-golf-golfzi...
>
> You can find elevation from the GPS, windspeed would have to come from
> a weather web service, which in theory you could access
> programmatically.
>
> Yusuf Saib
> Android
> ·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 Sep 29, 12:39 am, Maxood  wrote:
>
>
>
> > Could someone provide me a link on a good Golf application on android?
> > I am interested to look at the screenshots and its flow.
> > Wonder if we are able to find out elevation and/or wind speed through
> > a device. Is it possible with any of the phones in the market running
> > on android?
--~--~-~--~~~---~--~~
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] ImageButton on Graphic Background

2009-09-30 Thread Maxood

Is it possible to have ImageButtons to be placed on a graphic
background?  Wonder if they will receive events or not? Please reply
with comments
--~--~-~--~~~---~--~~
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: ImageButton on Graphic Background

2009-10-01 Thread Maxood

Let me be very precise here. I have a picture in the background.Can i
place ImageButtons on this picture and receive click event of the
ImageButtons?
If not then how can i place a pictured object on a pictured background
and be able to receive click event of that object?
Thank you
Maxood

On Sep 30, 4:56 pm, "Mark Murphy"  wrote:
> > Is it possible to have ImageButtons to be placed on a graphic
> > background?  Wonder if they will receive events or not? Please reply
> > with comments
>
> I do not know exactly what you mean by "placed on a graphic background".
>
> If you mean you want the ImageButton to *have* some different background
> (e.g., android:background="..."), that is fine, and ImageButton will work
> normally in terms of events, AFAIK. However, unless you provide a
> StateListDrawable as the background, it will not *visually* appear to take
> focus, click, or anything like that.
>
> --
> Mark Murphy (a Commons Guy)http://commonsware.com
> Android App Developer Books:http://commonsware.com/books.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] Re: Trajectory Calculator

2009-10-01 Thread Maxood


Also i'm looking for an app with a trajectory calculator.Thankyou
Maxood
On Sep 30, 10:33 am, Maxood  wrote:
> How can we detect wind speed from a weather web service. Can you
> suggest some good sites?
>
> Also i have been informed that one is restricted by the United States
> Golf Association and the Royal and Ancient Golf Association (the
> ruling bodies of golf in the US and Europe) for using any device to
> check atmospheric conditions as it is against the rules.Please check:
>
> http://answers.yahoo.com/question/index;_ylt=AvIE5c3zE5fjluY9rd28i5vs...
>
> Wonder if we can incorporate this feature in the app?Would it be
> legal?
>
> Also let me know how do you find TeeDroid:http://www.teedroid.com/
>
> Looking for valuable comments suggestions.Thank you
> Maxood
>
> On Sep 30, 12:11 am, "Yusuf Saib (T-Mobile USA)" 
>
>
> Mobile.com> wrote:
> > There's more than one Golf app. Golfzilla is 
> > one:http://asia.cnet.com/crave/2008/07/08/google-maps-android-golf-golfzi...
>
> > You can find elevation from the GPS, windspeed would have to come from
> > a weather web service, which in theory you could access
> > programmatically.
>
> > Yusuf Saib
> > Android
> > ·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 Sep 29, 12:39 am, Maxood  wrote:
>
> > > Could someone provide me a link on a good Golf application on android?
> > > I am interested to look at the screenshots and its flow.
> > > Wonder if we are able to find out elevation and/or wind speed through
> > > a device. Is it possible with any of the phones in the market running
> > > on android?
--~--~-~--~~~---~--~~
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: ImageButton on Graphic Background

2009-10-02 Thread Maxood

What layout and controls would we use for cloning the following app on
android:

http://www.youtube.com/watch?v=w30nCeSd_yc

We have 12 icons/buttons displayed on a background here. Please
comment in detail.
Thanks for your prompt reply,
Maqsood
On Oct 1, 9:19 pm, Zeeshan Muhammad  wrote:
> if u mean to place an image button on top of a layout , that could help
>
>      android:layout_width="wrap_content"
>     android:layout_height="wrap_content"
>    android:background="@drawable/background"
>     >
>                        android:layout_width="wrap_content"
>             android:layout_height="wrap_content"
>             android:background="@drawable/btn_background"
>
>             />
> 
>
> or in the code u can create ImageButton and put in in the layout by addView
>
>
>
> On Thu, Oct 1, 2009 at 1:36 PM, Mark Murphy  wrote:
>
> > > Let me be very precise here. I have a picture in the background.
>
> > That is not "very precise". The picture is "in the background of"...what?
>
> > > Can i
> > > place ImageButtons on this picture and receive click event of the
> > > ImageButtons?
>
> > Presumably.
>
> > Please try it, and if it does not work, post some layout XML that can more
> > clearly explain what it is you are trying and that does not work.
>
> > --
> > Mark Murphy (a Commons Guy)
> >http://commonsware.com
> > Android App Developer Books:http://commonsware.com/books.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] Help needed: Emulator does not show up

2009-10-06 Thread Maxood

Whenever i hit RUN in eclipse, the emulator does not show up and i am
getting the following message in the console window:

2009-10-06 14:31:59 - HelloWorld]Uploading HelloWorld.apk onto device
'emulator-5554'
[2009-10-06 14:31:59 - HelloWorld]Installing HelloWorld.apk...
[2009-10-06 14:32:01 - HelloWorld]Success!
[2009-10-06 14:32:02 - HelloWorld]Starting activity
com.myapps.helloworld.HelloWorld on device
[2009-10-06 14:32:04 - HelloWorld]ActivityManager: Starting: Intent
{ comp={com.myapps.helloworld/com.myapps.helloworld.HelloWorld}

Also the Build All and Build Project menu options are also disabled
whenever i open my src files and want to build them.

thank you,
Maqsood
--~--~-~--~~~---~--~~
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 Horizontal Scrolling

2009-10-06 Thread Maxood

 I have a banner on the top and i have 36 buttons in all, of which i
want to display a set of 12 to display while scrolling horizontally.I
want the banner to be stationary while scrolling.

Please give me your expert advice after watching this demo here on
youtube on iMEvil:

http://www.youtube.com/watch?v=w30nCeSd_yc

Waiting for reply,
Maxood
--~--~-~--~~~---~--~~
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: Playing video in Android not showing the video, playing sound only with a still image

2009-10-13 Thread Maxood

I tried to play a you tube movie through the media app provided in the
samples. The emulator is running fine but once i click the media apps
and try to play the video demo, i get the following error : "Sorry
this video cannot be played"

Here is the code and i am trying to play a youtube video in my
emulator:

package com.example.android.apis.media;

import com.example.android.apis.R;
import android.app.Activity;
import android.graphics.PixelFormat;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.widget.MediaController;
import android.widget.Toast;
import android.widget.VideoView;
import android.media.

public class VideoViewDemo extends Activity {

/**
 * TODO: Set the path variable to a streaming video URL or a local
media
 * file path.
 */
private String path = "http://www.youtube.com/watch?
v=0p_6ZruRC_c";
private VideoView mVideoView;

@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.videoview);
mVideoView = (VideoView) findViewById(R.id.surface_view);

if (path == "") {
// Tell the user to provide a media file URL/path.
Toast.makeText(
VideoViewDemo.this,
"Please edit VideoViewDemo Activity, and set path"
+ " variable to your media file URL/path",
Toast.LENGTH_LONG).show();

} else {

/*
 * Alternatively,for streaming media you can use
 * mVideoView.setVideoURI(Uri.parse(URLstring));
 */
mVideoView.setVideoPath(path);
mVideoView.setMediaController(new MediaController(this));
mVideoView.requestFocus();

}
}
}
On Sep 29, 2:33 pm, Mark Murphy  wrote:
> shobhit kasliwal wrote:
> > I tried the DemoApi's that come's with the sdk but still no luck.
> > I am still getting a still image with audio if I try to run teh Wmv file
> > and for 3gp and mp4 I am not getting anything.
>
> WMV is not supported onAndroidgenerally. WMV may be supported on
> select devices from manufacturers.
>
> > I am not geting what the problem is...??
>
> 1. Start with avideofile known to work with your sample, or known to
> work onAndroid.
>
> For example:
>
> http://www.law.duke.edu/cspd/contest/finalists/
>
> At least the "Documentaries and You"videoworks fine onAndroid. I have
> used it with numerous training classes, with my sample code I linked to
> earlier.
>
> 2. Check your warnings in logcat to see if anything shows up.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://twitter.com/commonsguy
>
> AndroidApp Developer Books:http://commonsware.com/books.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] YouTube & Android

2009-10-13 Thread Maxood

Does android support youtube videos? If yes then, can someone provide
me an example code
Thanks,
Maxood
--~--~-~--~~~---~--~~
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] Database Retrieval in Android

2009-10-22 Thread Maxood

I need a simple example to retrieve data from sqlite database and show
it in a TextView. Could someone refer me a tutorial or a sample
please? 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] How to Obtain Endless Views

2009-10-26 Thread Maxood

I am developing an application in which a user keeps on scrolling
vertically. Each view displays a single text on a drawable background.
How can i obtain endless views?
Is it a ListView do i have to use here? But how can i make a ListView
not to end and keep on going forever until the application is
terminated by the user?
Is there an attribute or i have to do it programatically? Please
explain.

Hope my question is clear.Waiting for the reply.
--~--~-~--~~~---~--~~
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] Issue with Android Debug Bridge

2009-10-26 Thread Maxood

Whenever i try to run ADB in shell mode, i receive the error:
Device Not Found

Please help!
--~--~-~--~~~---~--~~
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: Issue with Android Debug Bridge

2009-10-26 Thread Maxood

There are no devices attached. The list is empty.

How can i attach a device?

On Oct 26, 3:01 pm, Tim  wrote:
> On Oct 26, 2:44 pm, Maxood  wrote:
>
> > Whenever i try to run ADB in shell mode, i receive the error:
> > Device Not Found
>
> > Please help!
>
> What device are you using?
--~--~-~--~~~---~--~~
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: Issue with Android Debug Bridge

2009-10-26 Thread Maxood

Also my platform is Windows XP. Processor is AMD.

On Oct 26, 10:19 pm, Maxood  wrote:
> There are no devices attached. The list is empty.
>
> How can i attach a device?
>
> On Oct 26, 3:01 pm, Tim  wrote:
>
>
>
> > On Oct 26, 2:44 pm, Maxood  wrote:
>
> > > Whenever i try to run ADB in shell mode, i receive the error:
> > > Device Not Found
>
> > > Please help!
>
> > What device are you using?
--~--~-~--~~~---~--~~
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: Issue with Android Debug Bridge

2009-10-27 Thread Maxood

I am using an emulator here. And on the emulator USB Debugging is
enabled.
Still getting the same message "error: device not found".

Also at times ADB runs fine in shell mode but now all of a sudden it
is not running and throwing error. Why?Whats the reason? And whats the
solution?

On Oct 27, 1:05 am, Alexey Tarasov  wrote:
> On my HTC Hero, you need switch on ¨Settings -> Applications ->
> Development -> USB debugging¨  option in order to use adb.
>
> On Oct 27, 3:24 pm, Maxood  wrote:
>
>
>
> > Also my platform is Windows XP. Processor is AMD.
--~--~-~--~~~---~--~~
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: Database Retrieval in Android

2009-10-27 Thread Maxood

Thanks RichardC ! Have you read my thread on ADB error: device not
found?

On Oct 22, 9:24 am, RichardC  wrote:
> Notepad in samples
> android-sdk-windows-1.6_r1\platforms\android-1.6\samples\NotePad
>
> is a good example of using SQLite through a content provider.
>
> Hopefully someone else will come along with a simpler example.
>
> --
> RichardC
>
> On Oct 22, 5:10 pm, Maxood  wrote:
>
>
>
> > I need a simple example to retrieve data from sqlite database and show
> > it in a TextView. Could someone refer me a tutorial or a sample
> > please? 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: Issue with Android Debug Bridge

2009-10-27 Thread Maxood

Is there anyone to help me here?

On Oct 27, 2:21 am, Maxood  wrote:
> I am using an emulator here. And on the emulator USB Debugging is
> enabled.
> Still getting the same message "error: device not found".
>
> Also at times ADB runs fine in shell mode but now all of a sudden it
> is not running and throwing error. Why?Whats the reason? And whats the
> solution?
>
> On Oct 27, 1:05 am, Alexey Tarasov  wrote:
>
>
>
> > On my HTC Hero, you need switch on ¨Settings -> Applications ->
> > Development -> USB debugging¨  option in order to use adb.
>
> > On Oct 27, 3:24 pm, Maxood  wrote:
>
> > > Also my platform is Windows XP. Processor is AMD.
--~--~-~--~~~---~--~~
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 2.0 SDK is here!

2009-10-28 Thread Maxood

I am getting the following messages after

Done. Nothing was installed.

Downloading SDK Platform Android 2.0, API 5, revision 1
SSL peer shut down incorrectly

Whats the solution?
On Oct 27, 11:16 am, Jeffrey Blattman 
wrote:
> new and updated tools. regardless of the SDK version, you can always
> develop your app to target previous SDK versions. in your manifest, look
> for the line,
>
> 
>
> 3 is for 1.5, 4 for 1.6 ...
>
> On 10/27/09 10:42 AM, Matt Raffel wrote:
>
>
>
>
>
> > how does this apply if my phone is currently 1.5 and I wanted my app to
> > work on it?  Do I stick to 1.5?
>
> > Matt
>
> > Xavier Ducrohet wrote:
>
> >> Hello everyone!
>
> >> We've just announced the Android 2.0 SDK
> >>http://android-developers.blogspot.com/2009/10/announcing-android-20-...
>
> >> If you already have the 1.6 SDK, note that you can simply use the SDK
> >> Manager to add Android 2.0 to your SDK. Make sure you also get the new
> >> SDK Tools (revision 3), as the SDK Manager in revision 2 (the one that
> >> shipped with 1.6) doesn't enforce dependencies between platforms and
> >> Tools (fixed in rev 3)
>
> >> For more information about using the SDK Manager, see:
> >>http://developer.android.com/sdk/adding-components.html
>
> >> Have fun!
> >> 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
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Issue with Android Debug Bridge

2009-10-28 Thread Maxood

Turned off the firewall. Issue is still pending. Again getting the
same error message on running adb shell:
"Device Not Found"
On adb devices, i get an empty list with the following messages:
* daemon not running. starting it now*
* daemon started successfully *
"List of devices attached"



On Oct 28, 5:02 am, Alexey Tarasov  wrote:
> Probably firewall issue, cause emulator is connected via TCP
> connection.
> Try 'netstat -ab' and see its output for emulator image, e.g. is it
> listening ports 5554,  and so on. If yes, then switch firewall off
> and try again 'adb devices'
> I'm not using Windows, so I don't know which other problems may be
> with emulator in your case.
>
> On Oct 27, 2:21 am, Maxood  wrote:
>
>
>
> > I am using an emulator here. And on the emulator USB Debugging is
> > enabled.
> > Still getting the same message "error: device not found".
> > Also at times ADB runs fine in shell mode but now all of a sudden it
> > is not running and throwing error. Why?Whats the reason? And whats the
> > solution?
--~--~-~--~~~---~--~~
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: Issue with Android Debug Bridge

2009-10-29 Thread Maxood

ADB version is 1.0.25. Emulator version 1.12.

What do you mean by AVD platform? I have Android 1.5 and 1.6 installed
on my machine.


On Oct 28, 4:19 pm, Raphael  wrote:
> So you're trying to see an emulator, right, not a physical device?
>
> Can you tell us a bit more:
> - the version of adb: "adb version"
> - the version of your emulator: "emulator -version" (give the full
> first line, including build_id)
> - is the emulator fully booted when you try to see it in adb? does it
> have network?
> - what AVD platform are you trying to run in your emulator?
>
> R/
--~--~-~--~~~---~--~~
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: Issue with Android Debug Bridge

2009-10-29 Thread Maxood

I have already tried that nothing appeared in the list.Thanks

On Oct 28, 9:56 pm, Darshana Murthy  wrote:
> Hey.. whenever i faced this issue i used to manually kill the server
> and start it again. Next when i tried adb devices, it showed the
> Device name and mode correctly.
> --> adb kill-server
> --> adb start-server
> --> adb devices
>
> Cheers!
> On Oct 28, 9:17 pm, Maxood  wrote:
>
>
>
> > Turned off the firewall. Issue is still pending. Again getting the
> > same error message on running adb shell:
> > "Device Not Found"
> > On adb devices, i get an empty list with the following messages:
> > * daemon not running. starting it now*
> > * daemon started successfully *
> > "List of devices attached"
>
> > On Oct 28, 5:02 am, Alexey Tarasov  wrote:
>
> > > Probably firewall issue, cause emulator is connected via TCP
> > > connection.
> > > Try 'netstat -ab' and see its output for emulator image, e.g. is it
> > > listening ports 5554,  and so on. If yes, then switch firewall off
> > > and try again 'adb devices'
> > > I'm not using Windows, so I don't know which other problems may be
> > > with emulator in your case.
>
> > > On Oct 27, 2:21 am, Maxood  wrote:
>
> > > > I am using an emulator here. And on the emulator USB Debugging is
> > > > enabled.
> > > > Still getting the same message "error: device not found".
> > > > Also at times ADB runs fine in shell mode but now all of a sudden it
> > > > is not running and throwing error. Why?Whats the reason? And whats the
> > > > solution?- 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] Re: Book recommendation

2009-10-29 Thread Maxood

"Begining Android" by Mark Murphy and "Hello Android" by Ed Burrnette
are good books for beginners.

On Oct 26, 8:48 pm, Tim  wrote:
> I have some Linux development experience, and would like a
> recommendation on a good book to buy introducing me to Android.
--~--~-~--~~~---~--~~
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 2.0 SDK is here!

2009-10-30 Thread Maxood

I just got these messages messages after running updates with the
'http' site instead of 'https'

Downloading SDK Platform Android 2.0, API 5, revision 1
SSL peer shut down incorrectly
Skipping 'Google APIs by Google Inc., Android API 5, revision 1'; it
depends on 'SDK Platform Android 2.0, API 5, revision 1' which was not
installed.
Downloading Google APIs by Google Inc., Android API 5, revision 1
Installing Google APIs by Google Inc., Android API 5, revision 1
Installed Google APIs by Google Inc., Android API 5, revision 1
Updated ADB to support the USB devices declared in the SDK add-ons.
'adb kill-server' succeeded.
ADB: * daemon not running. starting it now *
'adb start-server' succeeded.
ADB: * daemon started successfully *

Has somebody got a clue, whats really happening here?

On Oct 29, 7:00 pm, Jon  wrote:
> I was able to disable the Japanese? characters by going to Settings
> application, then Language & Keyboard settings, and unticking the
> Japanese stuff.
>
> On Oct 29, 5:20 pm, Mitch  wrote:
>
>
>
> > My emulator is showing what looks like Chinese characters when I try
> > to enter names into the address book.  Is there a configuration I need
> > to set?
>
> > Is there an emulator user's guide?
>
> > On Oct 28, 6:54 am, donden1  wrote:
>
> > > Same error here... does anyone know how to fix this error or what the
> > > problem is?
>
> > > "SSL Peer shut down incorrectly"
>
> > > On Oct 28, 8:31 am, Dori  wrote:
>
> > > > Exactly the same problem here, any suggestions?
>
> > > > On Oct 28, 10:32 am, Maxood  wrote:
>
> > > > > I am getting the following messages after
>
> > > > > Done. Nothing was installed.
>
> > > > > Downloading SDK Platform Android 2.0, API 5, revision 1
> > > > > SSL peer shut down incorrectly
>
> > > > > Whats the solution?
> > > > > On Oct 27, 11:16 am, Jeffrey Blattman 
> > > > > wrote:
>
> > > > > > new and updated tools. regardless of the SDK version, you can always
> > > > > > develop your app to target previous SDK versions. in your manifest, 
> > > > > > look
> > > > > > for the line,
>
> > > > > > 
>
> > > > > > 3 is for 1.5, 4 for 1.6 ...
>
> > > > > > On 10/27/09 10:42 AM, Matt Raffel wrote:
>
> > > > > > > how does this apply if my phone is currently 1.5 and I wanted my 
> > > > > > > app to
> > > > > > > work on it?  Do I stick to 1.5?
>
> > > > > > > Matt
>
> > > > > > > Xavier Ducrohet wrote:
>
> > > > > > >> Hello everyone!
>
> > > > > > >> We've just announced the Android 2.0 SDK
> > > > > > >>http://android-developers.blogspot.com/2009/10/announcing-android-20-...
>
> > > > > > >> If you already have the 1.6 SDK, note that you can simply use 
> > > > > > >> the SDK
> > > > > > >> Manager to add Android 2.0 to your SDK. Make sure you also get 
> > > > > > >> the new
> > > > > > >> SDK Tools (revision 3), as the SDK Manager in revision 2 (the 
> > > > > > >> one that
> > > > > > >> shipped with 1.6) doesn't enforce dependencies between platforms 
> > > > > > >> and
> > > > > > >> Tools (fixed in rev 3)
>
> > > > > > >> For more information about using the SDK Manager, see:
> > > > > > >>http://developer.android.com/sdk/adding-components.html
>
> > > > > > >> Have fun!
> > > > > > >> Xav
>
> > > > > > --- 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] Repeating Drawables on Scroll Event

2009-11-03 Thread Maxood
  I have 27 drawables in my res folder. I am using these drawables as
backgrounds for views.
Is it possible to repeat these drawables after every 1 cycle(27 views)
on scroll event?If yes then how?

Thanks,
Maqsood

-- 
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: Repeating Drawables on Scroll Event

2009-11-03 Thread Maxood
Alternatively, i need to add views dynamically on Scroll Event.Any
ideas?

On Nov 3, 6:38 am, Maxood  wrote:
>   I have 27 drawables in my res folder. I am using these drawables as
> backgrounds for views.
> Is it possible to repeat these drawables after every 1 cycle(27 views)
> on scroll event?If yes then how?
>
> Thanks,
> Maqsood

-- 
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: Requirment in java/Android

2010-03-02 Thread Maxood
Can you please let us have your company profile and some detail about
what type of android projects you're working on. We are a company
based in Fremont, CA and we make social media apps on Facebbok. We
also clone iPhone apps to Android. Here is our link:http://
www.avenuesocial.com/

Maqsood

http://www.twitter.com/maxood

On Feb 27, 12:14 am, Umesh  wrote:
> Hi all we have some opening in java/android .
>
>  1 or more years of experience in developing applications in Android.
>
>  Should have good experience in working on Eclipse workbench..
>
>  Should be extremely good with working on UI
>
>  Should be able to tune applications for performance.
>
>  Should have good programming basics in terms of following best
> practices and coding guidelines
>
>  Should have at least 2 years of experience in application programming
> in any platform/technology/language
>
> send me your profile - h...@hrventure.com

-- 
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 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: Regarding Database setup

2010-03-02 Thread Maxood
Here are your required answers:

Q.Which database i can use ?
A. SQLite. You can download it free from www.sqlite.org

Q. What should be connection string ?
A. You can make a database adapter class instead. Go though these
links
http://developer.android.com/reference/android/database/sqlite/package-summary.html
http://www.devx.com/wireless/Article/40842/1954

Q. How i can deploy queries ?
A. You can write queries in your class using cursors

Q. How i can parse recordsets etc ?
A. Look into the Android SQLite API:
http://developer.android.com/reference/android/database/sqlite/package-summary.html

Hope this helps.

Android Developer,
Maqsood
http://www.twitter.com/maxood
On Feb 23, 11:51 pm, Harminder Singh  wrote:
> Hello,
>
> I am newbie to Android application development. Can anybody help me
> about to set up database related applications.
> I have many questions into mind like:
> Which database i can use ?
> How i can use that ?
> What should be connection string ?
> How i can deploy queries ?
> How i can parse recordsets etc ?
>
> Seeking your valuable comments
>
> Thank in Advance
> Harminder

-- 
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 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: Help with sound aplication

2010-03-02 Thread Maxood
You have to look into the media player API in Android
i.e.android.media.MediaPlayer;
android.media.MediaPlayer.OnCompletionListener . Here it is:
http://developer.android.com/reference/android/media/package-summary.html

And that is how you play a sound on firing a click listener:

private OnClickListener btnDontBeStupidListener = new
OnClickListener()
{
public void onClick(View v)
{
  //Toast.makeText(getBaseContext(), "Don't Be Stupid audio file
is being played", Toast.LENGTH_SHORT).show();

  final MediaPlayer mp = MediaPlayer.create(iMEvil.this,
R.raw.stupid);

  //mp.start();

  try {
  mp.start();
  //mp.release();
  }catch(NullPointerException e){
Log.v("MP error", e.toString());
  }

  mp.setOnCompletionListener(new OnCompletionListener(){

  // @Override
  public void onCompletion(MediaPlayer arg0) {
 mp.release();

  }
 });
}
};

Hope this helps.

Maqsood
http://www.twitter.com/maxood

On Feb 15, 2:13 pm, Waphomet  wrote:
> Hi everybody, I've been sarching in forums (and google) trying to find
> something helpful but I had no luck, so I hope someone here could help
> me.
>
> I'm trying to make a simple "Piano -like" app, so I can press a button
> and a sound will be playing as long as I'm pressing it. I would also
> like to record in a text file what buttons I've been presing and how
> much time (just similar to midi format), so I could reproduce it
> later.
>
> The question is: what media resource should I use? I should record the
> "plain sounds" in some kind of music format (one archive for each
> sound ) and then call them using soundpool? There's no other more
> optimized option... 'cause I don't like the sound of what I've been
> thinking of...specially if I want to make a composer mode and deal
> with time.
>
> Thanks and sorry for my poor English... greetings from Spain :-) South
> Europe :-)

-- 
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 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 integrate facebook connect api in any android application?

2010-03-30 Thread Maxood
What's the procedure to run Facebook Connect application in android?
Here is the link:http://code.google.com/p/fbconnect-android/

Please explain step by step. I'm having errors in my manifest file:





-- 
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 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

To unsubscribe from this group, send email to 
android-beginners+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.


[android-beginners] Re: How can i integrate facebook connect api in any android application?

2010-04-02 Thread Maxood
FYI: 
http://stackoverflow.com/questions/2544295/how-can-i-integrate-facebook-api-in-any-android-application

Wonder if you're based in Karachi. I'm working on the same task as
you. Please do call me on 0321-368-9818.


On Mar 31, 5:10 am, wahib haq  wrote:
> hello experts !!
>
> I have been searching for help regarding usage of fbconnect api in
> android app for a long time. I posted numerous posts on the group but
> there wasnt any helpful reply. I tried with the code given in
> fbconnect api in downloads section. After entering the facebook
> application keys correctly all i get is a blank white screen as i try
> to connect. this issue was widely posted in the issue section and i
> got no solution to this.
>
> then i found out that there is fbrocket api available to use facebook
> api in more easier way. but the code is not available and no help as
> well.
>
> dear kevin, i have a little experience of using http get/post requests
> so i will be very thankful if you can help me out to get started . I
> intent to add login functionality in my app using facebook account in
> first phase. I'll be truly thankful.
>
> regards,
> wahib
>
> On 3/31/10, Kevin Duffey  wrote:
>
>
>
>
>
> > Yah.. that wouldn't make any sense then. Looking at the api.. there is a
> > REST-like api anyone can use. To me, looks like this might be a better
> > avenue of integration than the iPhone ported SDK.
>
> >http://wiki.developers.facebook.com/index.php/API#REST_Interface
>
> > At least it works on all platforms, and is not some sort of SDK built up
> > around it. I will probably go this route over adding extra libraries. I can
> > then use specifically what I want and it's easy enough to formulate GET/POST
> > http requests from Android.
>
> > On Tue, Mar 30, 2010 at 4:45 PM, Justin Anderson
> > wrote:
>
> >> Not all android devices ship with a built-in facebook app.  Whoever the
> >> actual developer is of the app would have to expose login information like
> >> that via intents and intent filters...
>
> >> But that would be counterproductive for the developer of your facebook app
> >> because he/she wants you to use that specific app.  Now, I don't know for
> >> sure that it is not possible but I would be willing to bet that it isn't.
>
> >> --
> >> There are only 10 types of people in the world...
> >> Those who know binary and those who don't.
> >> --
>
> >> On Tue, Mar 30, 2010 at 5:29 PM, Kevin Duffey  wrote:
>
> >>> So I have a question about this. There is a built in facebook app on my
> >>> droid. Maybe it's not on all android devices.. but basically I can't
> >>> remove
> >>> it (that I know of) and I sign in to it. Can't an app access the built-in
> >>> facebook to sign in and not have to display some facebook sign in page
> >>> directly to utilize facebook? Is there no way to make use of the facebook
> >>> app that comes with Android?
>
> >>> On Tue, Mar 30, 2010 at 3:07 PM, Justin Anderson  >>> > wrote:
>
> >>>> Well, what errors are you getting in your manifest file?
>
> >>>> --
> >>>> There are only 10 types of people in the world...
> >>>> Those who know binary and those who don't.
> >>>> --
>
> >>>> On Tue, Mar 30, 2010 at 4:09 AM, Maxood  wrote:
>
> >>>>> What's the procedure to run Facebook Connect application in android?
> >>>>> Here is the link:http://code.google.com/p/fbconnect-android/
>
> >>>>> Please explain step by step. I'm having errors in my manifest file:
>
> >>>>>  >>>>>            android:theme="@android:style/
> >>>>> Theme.Translucent.NoTitleBar"/>
> >>>>>         >>>>> android:name="com.codecarpet.fbconnect.FBPermissionActivity"
> >>>>>            android:theme="@android:style/
> >>>>> Theme.Translucent.NoTitleBar"/>
> >>>>>         >>>>> android:name="com.codecarpet.fbconnect.FBFeedActivity"
> >>>>>            android:theme="@android:style/
> >>>>> Theme.Translucent.NoTitleBar"/>