[android-beginners] Google map API

2010-03-11 Thread Harminder Singh
I tried to use Google map API. But its giving error on following lines. 1) when i import this package -- (import com.google.android.maps.MapView) it give error and ask to make a class MapView in com.google. android.maps 2) When i extend MapActivity in class it gives error In androidmaifest.xml t

Re: [android-beginners] Re: binding to the search key

2010-03-11 Thread Justin Anderson
I know this is a long time coming, but I have a beta version of the next version of AppSwipe! It isn't market-worthy quite yet, but it is still pretty stable and has lots of new features (such as a widget), bug fixes, tweaks, etc... I have also found some ways to improve the overall speed of it a

Re: [android-beginners] Cannot get versionName when it set with string reference

2010-03-11 Thread Justin Anderson
I get the same results... Anyone know of any workaround for this? -- There are only 10 types of people in the world... Those who know binary and those who don't.

Re: [android-beginners] Disable keyboard in DatePicker ?

2010-03-11 Thread Justin Anderson
If you subclass it you could see if you have access to DatePicker's EditText member... I'm not sure you will, but if you do, you would then be able to set whether or not it is enabled. The buttons should still be able to set the value of the EditText, but then the user wouldn't be able to directly

[android-beginners] Do I have to mount the SD card?

2010-03-11 Thread Stormtap Studios
Hey folks, I plan on using the following code to write to the SD card: try { File root = Environment.getExternalStorageDirectory(); File outFile = new File(root, "filename.ext"); FileWriter gpxwriter = new FileWriter(gpxfile); BufferedWriter out = new BufferedWriter(gpxwriter);

Re: [android-beginners] easy way to embed a button in a mapview?

2010-03-11 Thread TreKing
On Thu, Mar 11, 2010 at 11:12 AM, Michael Dorin wrote: > Is there an easy way to embed a button inside a map view? You should be able to add it to the the MapView like any other viewgroup, using the appropriate MapView.LayoutParams. -

[android-beginners] Re: communication between android phone and pc using 3G network

2010-03-11 Thread Roman ( T-Mobile USA)
IP connectivity from a cellular data network to for example your home network is not straight forward Be aware of the following: + your cellular 3G IP address might be NAT'd (important when you try to reach the mobile device) + your home network IP address is not public reachable (if this is the

[android-beginners] Video splitter

2010-03-11 Thread Abhi
I want to create a video splitter that uses the videos that reside on the SD card and lets you split the video and store as separate files on the SD Card. Are there any APIs to enable this or I would need to use something like ffmpeg? Any suggestions? Abhi -- You received this message because y

[android-beginners] easy way to embed a button in a mapview?

2010-03-11 Thread Michael Dorin
Is there an easy way to embed a button inside a map view? I have been able to create a button above and below and alongside a mapview, but I can't seem to plunk it inside. I would like the mapview to use the whole screen. Thank you, Mike -- You received this message because you are subscribed

[android-beginners] Re: onTap/mapView question

2010-03-11 Thread bsd_mike
That was it. Thanks Mark, your the greatest! -Mike On Mar 11, 9:55 am, Mark Murphy wrote: > Michael Dorin wrote: > > Is there anyway to have both: > >   �...@override > >    public boolean onTap(GeoPoint p, MapView mapView) > > >   �...@override > >    protected boolean onTap(int index) > > > I w

Re: [android-beginners] What phone to buy for development?

2010-03-11 Thread Danny Pimienta
If you are looking to just test apps any Android phone is suitable for use. I have a HTC Eris from my carrier to test my apps on. Sent from my iPhone On Mar 11, 2010, at 9:20 AM, Natanael Arndt wrote: > Hello, > I want to start developing an application for android and want to > buy a phone for

Re: [android-beginners] onTap/mapView question

2010-03-11 Thread Mark Murphy
Michael Dorin wrote: > Is there anyway to have both: >@Override >public boolean onTap(GeoPoint p, MapView mapView) > >@Override >protected boolean onTap(int index) > > > I want to be able to detect if a user has tapped a previously selected > GeoPoint. > I guess I could do some

Re: [android-beginners] Problem with the deployment of an application

2010-03-11 Thread Justin Anderson
Does logcat give you any info? -- There are only 10 types of people in the world... Those who know binary and those who don't. -- On Thu, Mar 11, 2010 at 6:45 A

[android-beginners] Re: insatallation problem

2010-03-11 Thread ik
Your browser defines its proxy, not the eclipse's one. "Window" -> "Preferences" -> "General" -> "Network Connections" and then define your proxy ik On 10 mar, 08:37, Taruna Maddali wrote: > hi again > but when i directly go to the link from the browser ,the xml file opens. > > On Wed, Mar 10,

[android-beginners] Re: activitynotfound exception

2010-03-11 Thread ik
What's in settingsListener ? ik On 9 mar, 08:23, cnbishop wrote: > Button Settings_Button = (Button) findViewById(R.id.Settings_Button); >         Settings_Button.setOnClickListener(settingsListener); -- You received this message because you are subscribed to the Google Groups "Android Beginne

[android-beginners] onTap/mapView question

2010-03-11 Thread Michael Dorin
Is there anyway to have both: @Override public boolean onTap(GeoPoint p, MapView mapView) @Override protected boolean onTap(int index) I want to be able to detect if a user has tapped a previously selected GeoPoint. I guess I could do some kind of ugly lat/lon compare in a list.. If

[android-beginners] What phone to buy for development?

2010-03-11 Thread Natanael Arndt
Hello, I want to start developing an application for android and want to buy a phone for this task. But I don't really know, which one would be the best. I've heard of the ADP2 from Google, which is nearly the same as the HTC Magic. But what exactly are the differences? Is it possible to insta

[android-beginners] Problem with the deployment of an application

2010-03-11 Thread chris2a
Hello, I have a new problem with my android application... My application works on the emulator thus I try to test her on the telephone (samsung galaxy). The application is installed well but when she is launched it stays permanently on my welcome screen, in fact she dashes but realizes no operatio

[android-beginners] API

2010-03-11 Thread Harminder Singh
Hi. I am using a ebay Allcategory API. Which will show the ebay categories on my Android emulator. I save a document which contain a java file, category tree xml file, But I dont know how to use.Can anybody please tell me the same using some simple but complete example. Thanks in advance Jimmy