2

我有以下代码拨打号码

package com.example.callapp;

import android.app.Activity;
import android.content.Intent;   
import android.net.Uri;
import android.os.Bundle;
import android.view.Menu;



public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main); 

makecall(); }

public void makecall()
    { 
    Intent call = new Intent(Intent.ACTION_CALL);
    call.setData(Uri.parse("tel:90324567"));
    startActivity(call);
    }

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

}

现在,当我运行这个应用程序时,它会弹出一个拨号器并拨打号码。我想隐藏拨号器并在应用程序中显示通话活动 - 比如说拨打这个号码 - XXXX

以及如何在特定时间后结束通话?并随着时间在应用屏幕上显示消息?

4

0 回答 0