vote up 0 vote down star

I tried to make an Android program where I can call a single number by clicking button. Works fine but as I end calling, the emulator shows call log. Instead of this I would that my program returns to the screen where is that calling button I made. How can I do this? My code is now like this

((Button) findViewById(R.id.soita)).setOnClickListener(
    		new Button.OnClickListener() {
    			@Override public void onClick(View arg0) {
String nro="9999999";
Intent intent1 = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+nro));
startActivity(intent1);
Intent intent2 = new Intent(Intent.CATEGORY_HOME);
startActivity(intent2);
flag

I found that when I end the call in a button, the Activity Manager displays Starting activity: Intent { action=android.intent.action.VIEW type=vnd.anroid.cursor.dir/calls comp={com.andoid and then I can't see the rest of line in Eclipse. Can I change this intent somehow? – Jaska Oct 7 at 10:41

3 Answers

vote up 0 vote down check

I think I need to use the method onCallStateChanged. But where can I add the code there is only one line which starts an activity?

link|flag
Found it. One has to edit the InCallScreen.java. – Jaska Oct 15 at 11:31
vote up 0 vote down

I'm trying to find solution for this problem too... :( Did you find something to solve this?

link|flag
vote up 0 vote down

Where can I find that InCallScreen.java file? Can you explain that?

Thanks in advice!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.