Android :: Implementing VoIP Program

Nov 14, 2010

I have some design questions that I want to discuss with people interested in helping me. I am planning to develop a simple VoIP program that allows two Android phones in the same network to use VoIP. My goal is simply to capture sound, send the data with UDP, receive UDP data and play sound.My current design is to have 2 threads: one captures the microphone and sends the data; the other one receives bytes and plays them.I was starting to implement that using MediaPlayer and MediaRecorder. The issue that came up is how do I record and play sound? By that, I would like to know if I need to use a file, although that seems slow, or if there is anyway to have the recording automatically sent to my UDP socket please?Basically, I wonder if I have to record to a file, then to be able to play it, or if I could just pass a socket (for recording and playing).

Android :: Implementing VoIP program


Android :: Wifi Enabled VOIP Program?

Dec 10, 2008

My main question before I buy a G1 is does Android have a Wifi enabled VOIP program (like Skype)? Also, can I link it directly to a PC and throw any data I want inside it (linux programs). Oh one more thing, can it compile C code?

View 8 Replies View Related

Android :: Implementing In App Purchases

Jan 7, 2010

It looks like Android won't natively support in-app purchases for a while, and when it does there might be a huge user base with devices that don't support them.What's the best way to implement iPhone-like (additional content or services) in-app purchases in Android using the Android Market if possible?

View 4 Replies View Related

Android :: Implementing Action Bar

Jun 24, 2010

I am working on creating an Action Bar like the one from the new Android UI Patterns and I am running into a bit of trouble. I have a ViewSwitcher with two layouts in it. When the user taps the search button I animate between the two layouts. The problem is that the layouts are different sizes and I can't figure out how to make them take up the same amount of space. Here's what I mean. p.s. forgive the bad art, they are just place holders ;)

View 1 Replies View Related

Android :: Implementing An OnClickListener?

Nov 9, 2010

I am trying to do something similar to that of the android lock screen pattern. I have a class that extends a view that I create multiple instances of. These appear on the screen all at once.

I need to be able to click on them individually and have each one turn green individually, however only one on touch listener is listening at once and it belongs to the last dot which appeared, so if I click anywhere on the screen the last appeared dot turns green no matter where I click.

Here is the code for my dot class:

CODE:......

In the code I called newdotdraw multiple times.

View 1 Replies View Related

Android :: Implementing L2CAP

Aug 13, 2009

With reference to the current work at : http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;...

Can you tell me how can I implement L2CAP Socket?

I need to do it ASAP for a university project. Hoping for optimistic reciprocation.

View 5 Replies View Related

Android :: Implementing Predictions For IME?

May 14, 2010

Kindly share information regarding how to implement predictions for input methods... I have a new keyboard layout for which I need to provide prediction/sugeestion functionality....

View 2 Replies View Related

Android :: Implementing A Framework ?

Nov 16, 2010

I have 2 apps which should both contain some similar activities.... Now I decided to write a new app, some kind of "framework", which contains these activities, to avoid to write the code twice. How can I use these activities in my other 2 apps ? Whats the common approach for doing this? Adding the "Framework app" to the build path of the two other apps won't work.....

View 3 Replies View Related

Android :: PBX App VOIP

Feb 2, 2010

We use a hosted PBX solution that is VOIP. There is no VOIP andoid app from our provider but there is one for the iPhone.

However, we can call through our PBX by dialing our direct dial number, passcode and dial out - end result is the same, we call clients from our PBX with our company number displayed on caller ID.

The manual process is accomplished as follows.

1 dial our personal direct dial number
2 pause pause
3 enter #
4 pause pause
5 enter our mailbox security code (4-8 numbers)
6 enter #
7 pause
8 enter *
9 pause
10 enter #
11 enter 91 (9 for outside line, 1 for US)
at this point we enter the 7 digit number and are connected

Can someone write an app or is one already written that will simply let us choose a contact to dial and have a popup as done in Google Voice

Call with Google Voice
Call without Google Voice
Call from PBX

I am thinking if you select call from pbx the app would simply dial steps 1-11 above and then enter the contact number to complete the call.

This has to be incredibly easy for guys... it would sure help us outside sales guys from dialing in through our corporate pbx's.

View 1 Replies View Related

Android :: Voip App

Mar 2, 2010

Is there an app for this that you dont have to be a smartie to use? There's To much involved in it.

View 18 Replies View Related

Android :: VOIP

Sep 4, 2010

I've been on the same phone plan for close to 17 years, same # same carrier etc. It's been a sweet deal for the most part since I'm a light user of phone time.

I pay $10 a month for 'service', I only pay .11 a minute for time talked which normally runs around 100 minutes a month. Average phone bill before getting an android phone was around $25. Well I added text for $5 and now the monthly data plan for $30. Out of the 5gb limit i used .160gb on average per month.

I've had google voice for a while so i turned off texting and now use that number for texting(which works really sweet) other than people complaining that I have a new # to text/call to.

Is there anyway to utilize the data package to use some sort of VOIP calling instead of my per minute charge? Either to reduce or eliminate the per minute charge?

View 1 Replies View Related

Voip Android App

Feb 19, 2014

I want to write an android program that connect to the Voip Accounting server, and after customer's verification, customer will be able to enter his/her phone number, after that communication is established. they talk to each other exactly as like as old phone communication.

View 2 Replies View Related

Android :: Implementing Gesture Recognition In An App

Jul 26, 2010

I am adding gesture recognition to my app. I have added the view as described in the Android Developers Gestures article but when it comes to adding:

CODEE:..........

where do I put this in my code, do I have to create a new class for it, or can I have it in an inner class, or does it not need a class at all?! I have a set up similar to Lunar Lander which comprises of two files, one of which is a thread that handles pretty much all the physics and drawing of the game. The other file begins the thread and saveInstanceState method. Furthermore, what type is mLibrary?! I cannot find out anywhere! I imagine I will put the OnGesturePerformed method in my thread as this is where I handle all keyUp and Down events.

View 1 Replies View Related

Android :: Best Approach To Implementing Polling

Jul 12, 2010

I am required to work on an application which is be deployed on devices running Android 1.5. The application is supposed to maintain a connection with a server and regularly poll it for new data. The server will notify the client of new data following which the client will connect to the server and download the data.I know that ideally a push based approach will be more conducive here given that we are to run this on a mobile platform. Also, from Android2.2 there is going to be support for C2DM(Cloud to Cloud device Messaging) but as already mentioned this application is for devices running Android1.5.Implementation: I was thinking of using AlarmManager which would Broadcast Intents periodically(poll interval), The Broadcast receiver will then try to connect to the remote server and make data changed check. If the server has an update, the thread will connect to the remote server and download the data from the server.

Problem and Issues: 1. Is this the right way to approach the problem? 2. Is AlarmManager reliable? Would it remember Alarms after a device boot? (I think it does) 3. How do I ensure that battery usage is kept at minimum.(I have heard something about using "keep-alive" to sustain the session for longer time..what is this legend?) 4. What are other things that I need to consider? I am sure I must be missing lots of things here.

View 8 Replies View Related

Android :: Designing And Implementing App Idea

Jun 27, 2010

Does anyone have any good references for designing and implementing an idea I have for an android application. My idea is for an application that stores information and reviews about a specific location and presents this information to user.I have gone through all the tutorials and have been reading up on anything and everything about android. Now I am ready to challenge myself with my first app.

View 4 Replies View Related

Android :: Can't Find Certain Implementing Classes

Mar 19, 2010

I am looking for the implementation of the IAlarmManager.I am interested in the scheduling done by the AlarmManager.setInexactRepeating method and so I started looking for the implementation but I haven't been able to find anything.Internally to AlarmManager, I can see that the actual work is being done by an android.app.IAlarmManager interface.After googling around for a bit there seems to reference to an implementing class called android.app.IAlarmManager.Stub but that is as far I get.I am working with Android 1.6.

View 1 Replies View Related

Android :: Implementing Customized Drawable

Jun 3, 2010

I was trying to get hold of 2D graphics in Android.As a example i want to implement a custom drawable and show it in my Activity But when i run the app i see no rectangle on the activity, can anyone help me out? Where am i going wrong?

View 2 Replies View Related

Android :: Implementing Application With Database

Aug 4, 2010

I need to know how to create simple android application by sqlite database, how can i view the sqlite database and to view the tables has like other mysql server,Let me help to create simple application with database.where i can find the database.

View 2 Replies View Related

Android :: Best Practice For Implementing Watchdog

Sep 17, 2009

I'm writing an application where real-time knowledge of the GPS state is critical to convey to the user. I request GPS updates at 1000 ms intervals -- when I haven't received another update 1500 ms past the most recent update, I want to display a yellow icon, and 5000 ms after the most recent update I want to display a red icon. Currently, I'm doing it like this: private CountDownTimer gpstimeout; public void onLocationChanged(Location location) { if (gpstimeout != null) gpstimeout.cancel(); gpstimeout = new CountDownTimer(5000, 1500) { public void onTick(long m) { setYellow(); } public void onFinish() { setRed(); } }; gpstimeout.start(); }

View 3 Replies View Related

Android :: Error On Implementing OnClickListener ?

Mar 30, 2010

I am writing an application which one of the activity has a button and use this button to switch to another activity when clicking that.

The main activity implements the onCreate and OnClickListener as follows:

CODE:...........

When I try to run this program on my emulator, after hitting the button, the program stopped unexpectedly. I follow the instructions of implementing OnClickListener firmly so I don't know what's the problem in my implementation.

View 2 Replies View Related

Android :: Implementing A Touchable Calendar

Jan 12, 2010

I am creating a small calendar control that will be part of an application that runs on a larger-than-phone-sized screen. The calendar will simply display the current month and allow users to touch-select a day with an iPhone keyboard style popup bubble indicating which day is chosen.

The problem is that in order to do it with buttons would require 42 tiny buttons, which would probably be a resource hogging solution. Although a keyboard would give me the iPhone-keyboard-bubble-like behavior, i dont think that we can place a keyboard in a static location within a Layout, using it like a View.

So I am wondering what is the best way to go about implementing this. Is my "42 buttons is too many" assumption correct? Is my keyboard assumption correct? Do I have to use a SurfaceView (or something) and draw everything myself? Is there some other grid-like control that can make this simpler?

View 6 Replies View Related

Android :: Free Voip Over 3g

Dec 27, 2009

I no there are like a gzillion threads about this not jst on this forum but on others too, but i just can't seem to grasp what their saying. Anyway the point is basically i would like a noob proof tutorial on how to get try voip over 3g. I have tried fring and the test call works but i dont know how to make my own calls. Sipdroid and asip really confuse me and dont seem to work (just get red light) apparently i need something like pbxes which confuses me even more. I do have magicjack but i don't have the proxy for it and as of now dont have my actually magicjack with me so i can never really get it.

View 4 Replies View Related

Android :: True VOIP App

Feb 4, 2010

I got a mytouch 3g figuring it would handle voip like iphone and wm phones. But to my dismay, it appears there are no true VOIP apps for android that will allow me to call over wifi/3G from Germany.

I have read about sipdroid, truphone, skype lite, iscoot and others, but they all make a local call first, even to members of the same service -totally defeats the purpose. You'd be better off using a calling card!!

Anyway, just wondering if I am missing something. I got an android phone because I wanted to be part of something different, with great potential. I just didn't realize that it would be different in such a disadvantageous way...

View 5 Replies View Related

Android :: VOIP Working

Jan 1, 2010

Do u have idea on Android/VOIP working? share here....

View 10 Replies View Related

Android :: VoIP Application

Feb 4, 2010

An application which will allow me to make outgoing calls abroad over a wi-fi connection. Just like Skype on the desktop. Google Voice is not an option for me since I'm outside of US, and Skype doesn't seem to even have VoIP on Android.

What do others recommend using for their VoIP needs? Is there a service that already has an outgoing plan like SkypeOut? And an incoming number like SkypeIn?

View 4 Replies View Related

Android :: Internet Sms.txt App Voip

Apr 26, 2010

I am coming over to android, having previously used the iphone.

I used an app on the iphone called skysms, combined with credits i purchased from a company called freecall it allowed me to send cheap (2p) txt msg to places like Australia . I believe i am looking for some type of voip app for sending sms.

View 3 Replies View Related

Android :: No VOIP With Skype

Oct 15, 2009

I just bought a HTC Hero yesterday and downloaded the skype application only to find out that android phones do not support VOIP and therefore no free skype-to-skype calls! Will this ever change, or is there a workaround already?

View 16 Replies View Related

Android :: Voxofon On G1 - VOIP

Oct 31, 2008

I have been trying to sign up and use Voxofon but I am having some issues.. I have been in contact with Voxofon, is seems that Voxofon can not find the phone number which is a stumbling block for it...

When I check my phone number under Setting -> Status -> Phone number there is no info... does anyone have any info in that field or are they all blank...

Also has anyone been able to use Voxofon in the phone to phone mode?

View 4 Replies View Related

Android :: Getting Started With VOIP App For IOS

Sep 28, 2010

I'd like to create an app for iOS that does VOIP, presumably by interacting with a website. I can start with Android too.Does anyone know of any tutorials, suggestions or libraries that would be of any use.(The app would need to be rewritten for BB and android eventually, too.)

View 2 Replies View Related

Android :: Chat And VOIP App

Oct 5, 2010

I have successfully installed the Openfire XMPP server and built an Android app to text chat,how can I implement VOIP functionality to my application?Can this be done by connecting openfire with a SIP server?Can someone guide me?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved