[android-developers] Re: Simulate an incoming call from a test?

2013-06-11 Thread amro alfares
Hello again please check this : http://developer.android.com/tools/help/monkeyrunner_concepts.html Hope that helps Regards On Tuesday, June 4, 2013 1:20:44 AM UTC+3, Larry Meadors wrote: > > I have a service that reacts to incoming calls that I'm trying to test. > > Is there a way to simulat

[android-developers] Re: Hello. I am Japanese. Is it possible to divide View used using a conditional expression within a xml file?

2013-06-05 Thread amro alfares
Hello As far as i know this is not possible you can achieve that at run time but not in XML file Hope that helps Regards Amro Alfares On Tuesday, June 4, 2013 5:15:54 AM UTC+3, マキレット wrote: > > Hello. > I am Japanese. > Is it possible to divide View used using a conditiona

[android-developers] Re: Simulate an incoming call from a test?

2013-06-05 Thread amro alfares
h call and hang for the call and send for the SMS Hope that helps Regards Amro alfares amro.alfa...@gmail.com On Tuesday, June 4, 2013 1:20:44 AM UTC+3, Larry Meadors wrote: > > I have a service that reacts to incoming calls that I'm trying to test. > > Is there

[android-developers] Re: Receive SMS

2013-06-04 Thread amro alfares
Hello Ehsan to receive from certain numbers , you have to do the following : 1- make a BroadcastReceiver for receiving SMS messages and declare it in the AndroidManifest.xml 2- in the onReceive(Context context, Intent intent) you take the incoming message by doing this Bundle bundle = inten

[android-developers] Re: receive sms application. need help.

2013-06-04 Thread amro alfares
Hello to start activity from a BroadcastReceiver in the onReceive(Context context, Intent intent) method do the following : Intent myIntent = new Intent(context, MyActivity.class); myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(myIntent); Hope that Helps Regards On

[android-developers] Re: Intent Receiver for CALL END

2013-05-23 Thread amro alfares
There is no such thing as call end event or intent . On Friday, February 22, 2008 9:22:10 PM UTC+3, Dexter's Brain wrote: > > Hello all, > > Where do i find the Intent Receiver for a call end event. > Dexter -- -- You received this message because you are subscribed to the Google Groups "And

[android-developers] Re: Beginner Q. Learning Part 1

2012-07-11 Thread amro alfares
hello i will be more than happy to help just ask :) we all here help :) On Wednesday, July 11, 2012 8:31:06 AM UTC-7, Rene.M wrote: > > Hey guys, > im new to this Forum as i started to dive into android programming, I > stumbled across some problems. > Well im pretty much at the beginning of

[android-developers] Re: transfer the incoming call to the voice mail programatically

2012-07-10 Thread amro alfares
Hello take a look at this : stackoverflow hope that it helps On Monday, July 9, 2012 10:22:25 AM UTC-7, Aashish Jawla wrote: > > hi, > > please anyone can told me how to transfer incoming call dire

[android-developers] Background for EditText

2012-07-10 Thread amro alfares
hello all what i want to do is make an EditText with a background image ive tried to set a background in the xml with the background attribute , but the image gets bigger than the EditText ive also tried to use the EidtText methods like (setCompoundDrawables(left, top, right, bottom) ) but nt