[android-beginners] Re: How to connect to mysql db directly without any middleWare servers ?

2010-03-30 Thread Torch
On Mar 30, 12:49 am, adel zalok adel.zalok...@gmail.com wrote: Hello , I am trying to search for a way to be able to connect my android app to a mysql database without having to use a PHP server or any middleWare ,so Any Suggestions ? Thanks in Advance !! JDBC works perfectly with MySQL

Re: [android-beginners] Re: Support of JKS Keystore in Android

2010-03-30 Thread 陈林波
hi, it may help me. please tell me. thank you! 2009/11/13 swapnil kamble swap.kam...@gmail.com I got it working. I used KeyTool UIU app. Using it, worked smoothly. If anyone wants details how I did it, send me an email. I will document it and post it on list. Thanks, Swapnil On Fri,

Re: [android-beginners] Re: Support of JKS Keystore in Android

2010-03-30 Thread 陈林波
hi, it may help me. please tell me too. 2009/11/13 swapnil kamble swap.kam...@gmail.com I got it working. I used KeyTool UIU app. Using it, worked smoothly. If anyone wants details how I did it, send me an email. I will document it and post it on list. Thanks, Swapnil On Fri, Nov 13,

[android-beginners] Re: How to connect to mysql db directly without any middleWare servers ?

2010-03-30 Thread Networks Geek
Thank you so much , I will Try that !! On Mar 30, 8:31 am, Torch kurian...@gmail.com wrote: On Mar 30, 12:49 am, adel zalok adel.zalok...@gmail.com wrote: Hello , I am trying to search for a way to be able to connect my android app to a mysql database without having to use a PHP server or

[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: activity android:name=com.codecarpet.fbconnect.FBLoginActivity

[android-beginners] Google Maps API: ItemizedOverlay

2010-03-30 Thread Sebastián Treu
Hi, I read the doc HelloMapView just to know how to add markers to a map view. The API reference says this about ItemizedOverlay class: A base class for an Overlay which consists of a list of OverlayItems. This handles sorting north-to-south for drawing, creating span bounds, drawing a marker

Re: [android-beginners] Google Maps API: ItemizedOverlay

2010-03-30 Thread Mark Murphy
Sebastián Treu wrote: Hi, I read the doc HelloMapView just to know how to add markers to a map view. The API reference says this about ItemizedOverlay class: A base class for an Overlay which consists of a list of OverlayItems. This handles sorting north-to-south for drawing, creating

[android-beginners] Re: Google Maps API: ItemizedOverlay

2010-03-30 Thread Sebastián Treu
Yes, nevermind sry. After I send the email I kept looking for info. Then I read in the API reference that you must set the marker bounds for the markers, the ItemizedOverlay constructor says: Parameters: defaultMarker - A Drawable to be drawn on the map for each item in the overlay; see

[android-beginners] Re: problem in android.process.acore

2010-03-30 Thread Kitzy
Are youglooking at the concel output or the LogCat? When you first run your program in the emulator, it will check if it is already installed, if not, it will install it. -Kitzy On Mar 26, 1:43 pm, Farhan bil2...@googlemail.com wrote: Hi developers When i want to run a program the output

[android-beginners] Re: Errors in sample code

2010-03-30 Thread Kitzy
When you first open the code, you will need to build it so it creates the generated files and variables the rest of the code is looking for. -Kitzy On Mar 24, 7:22 am, Jarrett jdrummerna...@gmail.com wrote: Anytime I open a new project using sample code included in the Android SDK it has

[android-beginners] A new site to open blocked sites, and forbidden

2010-03-30 Thread soso essa
A new site to open blocked sites, and forbidden http://prog2010.zxq.net/proxy/ -- 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

[android-beginners] Android ADB.exe License

2010-03-30 Thread Joshua Park
Hi, is it possible for a third-party company to redistribute adb.exe file? (to include adb.exe into product package?) I do know that adb uses Apache License 2.0. But I am afraid to say I don't really know what this license mean for a third-party to redistribute the content (file). adb.c 1 /*

[android-beginners] Re: surfaceview setbackgrounddrawable()

2010-03-30 Thread joppe
anyone? On Mar 19, 7:21 pm, joppe joppekarhu...@gmail.com wrote: if i leave the setBackgroundDrawable() call out of the V constructor, i get black background with a line drawn from the lower right corner to the top left corner; and where ever i move the cursor afterwards (all as expected),

[android-beginners] Some Weird results for Calendar Class!! Can some one help

2010-03-30 Thread Yousuf Faheem
Hi, I am developing an app which shows a month calendar and can go back and forth. But when I try to go from March to February it shows March only. And the same happens when I try to move from Jan to Feb it goes to March instead of going to Feb. apart from this every thing else works as expected.

[android-beginners] I thought you couldn't instantiate interfaces?

2010-03-30 Thread ajb468
I am reading a book called Professional Android Development and in it is an example ToDoList project. The project contains the following code: myEditText.setOnKeyListener(new View.OnKeyListener() { public boolean onKey(View v, int keyCode, KeyEvent event) {

Re: [android-beginners] I thought you couldn't instantiate interfaces?

2010-03-30 Thread Mark Murphy
ajb468 wrote: I am reading a book called Professional Android Development and in it is an example ToDoList project. The project contains the following code: myEditText.setOnKeyListener(new View.OnKeyListener() { public boolean onKey(View v, int keyCode, KeyEvent

[android-beginners] How to save a file to res/raw ?

2010-03-30 Thread Kritzli
Hey, After reading so many tutorials about how to read a file from res/raw, i'm still wondering how i can write a file to res/raw. At the moment I'm saving my file like this to the emulator: FileOutputStream fos = null; OutputStreamWriter osw = null; try{

[android-beginners] Re: R.id cannot be resolved

2010-03-30 Thread mnavlani
thanks a lot all of you! i did come out of the problem :) -- 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

Re: [android-beginners] Re: R.id cannot be resolved

2010-03-30 Thread mbaye dieng
please explain how have you done to resolve your probleme for me and the others 2010/3/30 mnavlani monishanavl...@gmail.com thanks a lot all of you! i did come out of the problem :) -- You received this message because you are subscribed to the Google Groups Android Beginners group.

Re: [android-beginners] How to save a file to res/raw ?

2010-03-30 Thread ~ TreKing
On Tue, Mar 30, 2010 at 12:52 PM, Kritzli pfister.ta...@googlemail.comwrote: After reading so many tutorials about how to read a file from res/raw, i'm still wondering how i can write a file to res/raw. You can't. But the problem is, i need to read it from another class, which only

[android-beginners] screenOrientation question

2010-03-30 Thread Chris Ross
I have written an application that really only works/looks sensibly in landscape orientation, ie wider than it is tall. My understanding from web research suggests the following attributes on my Activity in the manifest: android:screenOrientation=landscape

[android-beginners] Re: Align ImageView to the right

2010-03-30 Thread a2ronus
Have you tried the RelativeLayout yet? Here's an example: ?xml version=1.0 encoding=utf-8? RelativeLayout xmlns:android=http://schemas.android.com/apk/res/ android android:layout_width=fill_parent android:layout_height=wrap_content android:background=#FF

[android-beginners] Re: problem in switching two activities

2010-03-30 Thread a2ronus
You also might want to take a look at: http://www.warriorpoint.com/blog/2009/05/24/android-how-to-switch-between-activities/ On 23 mrt, 13:30, Ramji ch.cha...@gmail.com wrote: Hi, I just started programmind an application using Eclipse for Android. I am creating 2 screens. 1st screen: Has a

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

2010-03-30 Thread Justin Anderson
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

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

2010-03-30 Thread Justin Anderson
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

[android-beginners] Re: Changing orientation from portrait to landscape

2010-03-30 Thread Ben
If you are not overriding the default configuration change routine, every time you rotate the phone it will destroy your activity and then recreate it from scratch. By lock the phone I assume that you mean you are sending the current activity to the background, which means at the very least it

[android-beginners] Layout help, is it possible to wrap controls?

2010-03-30 Thread Stormtap Studios
Hi guys, I'm trying to build a custom TextView solution. I want to be able to create text views with some tagged text, e.g. iThis text is italic/iband this text is bold/b, and since you can only set one style for all the text in the textview I need to come up with something custom. I've written

[android-beginners] Re: Layout help, is it possible to wrap controls?

2010-03-30 Thread Stormtap Studios
BTW, due to the way messages are formatted when sent to this group, the part where the letters go down in a column should have a bunch of spaces in front of them so they're lined up with the a at the end of the first line (i.e. they are all against the right edge of the screen). On Mar 30, 4:58 

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

2010-03-30 Thread Kevin Duffey
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,

Re: [android-beginners] Re: Layout help, is it possible to wrap controls?

2010-03-30 Thread Carmen Delessio
Take a look at this. I think it may solve part of the problem you are looking at; *Selecting, Highlighting, or Styling Portions of Text* *You can highlight or style the formatting of strings or substrings of text in a TextView object.* ... *the following code snippet demonstrates creating a

[android-beginners] notifyDataSetChanged not updating the iconified listview

2010-03-30 Thread prajakta
Hi, I am currently trying to update my iconified listview using notifyDataSetChanged but the listView doesnt get updated. From the posts that I read I found out that I dont need to call the setListAdapter again to update my listView and if I change the data that I feed to my array adapter the