询问一个关于Intent的简单有关问题

询问一个关于Intent的简单问题。
本人刚开始接触接触Android,询问个比较简单的问题,首先谢谢。
编了个拨号器的软件,在调用系统拨号软件的过程中出现错误,发现只要把MainActivity.java中的
Intent intent = new Intent();
intent.setAction("Intent.ACTION_CALL");
//intent.addCategory("android.intent.category.DEFAULT");
intent.setData(Uri.parse("tel:"+num));

改成
Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+num));

之后,软件正常运行,否则强退。
代码贴出,希望大家能够答疑。多谢!

MainActivity.java

package com.fufu.phonoNumber;
import android.net.Uri;
import android.content.Intent;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.EditText;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button = (Button) this.findViewById(R.id.taking);
        button.setOnClickListener(new ButtonClickListener());
        
    }
     private final class ButtonClickListener implements View.OnClickListener{

public void onClick(View v) {
EditText edittext = (EditText) findViewById(R.id.number);
String num = edittext.getText().toString();
Intent intent = new Intent();
intent.setAction("Intent.ACTION_CALL");
//intent.addCategory("android.intent.category.DEFAULT");
intent.setData(Uri.parse("tel:"+num));

//Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+num));
MainActivity.this.startActivity(intent);//方法内部会自动为Intent添加类别android.intent.category.DEFAULT
}
     }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
    
}


AndroidManifest.xml


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.fufu.phonoNumber"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="19" />
    <uses-permission android:maxSdkVersion="17" android:name="android.permission.CALL_PHONE"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.fufu.phonoNumber.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>     
    </application>

</manifest>

------解决方案--------------------
Intent.ACTION_CALL == "android.intent.action.CALL"
恍然大悟了啵
------解决方案--------------------

Intent intent = new Intent();
         intent.setAction(Intent.ACTION_CALL);
         intent.setData(Uri.parse("tel:"+ number));

------解决方案--------------------
intent.setAction("Intent.ACTION_CALL");
不能要引号