异步任务未知类型执行

Asynctask unknown type execute

这是我第一次使用 APIS 获取 return 结果 JSON 对象。我想我已经得到了正确的异步任务代码,但我只是不知道如何执行它。这是我的 class 代码。 对于我的布局,我只有一个带有 onClick () 方法 gg 的按钮、一个进度条和一个文本视图。
这是异步任务:

public class MainActivity extends Activity 
{
    ProgressBar progressBar;
    TextView responseView;
  EditText emailText;
    String URL;
@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
            progressBar = (ProgressBar) findViewById(R.id.progressBar);
            responseView = (TextView) findViewById(R.id.responseView);
            emailText = (EditText) findViewById(R.id.emailText);
            URL = "https://kgsearch.googleapis.com/v1/entities:search?query=taylor+swift&key=APIKEY&limit=1&indent=True";
}
    public void gg(View v)
    {
            new RetrieveFeedTask.execute();
    }


    private class RetrieveFeedTask extends AsyncTask<Void, Void, String> {

            private Exception exception;

            protected void onPreExecute() {
                    progressBar.setVisibility(View.VISIBLE);
                    responseView.setText("");
                    Toast.makeText(MainActivity.this, "pre execute", Toast.LENGTH_LONG).show();
            }

            protected String doInBackground(Void... urls) {
                    String email = emailText.getText().toString();
                    // Do some validation here


                    try {
                            URL url = new URL(URL);
                            HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
                            try {
                                    BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
                                    StringBuilder stringBuilder = new StringBuilder();
                                    String line;
                                    while ((line = bufferedReader.readLine()) != null) {
                                            stringBuilder.append(line).append("\n");
                                    }
                                    bufferedReader.close();
                                    return stringBuilder.toString();
                            }
                            finally{
                                    urlConnection.disconnect();
                            }
                    }
                    catch(Exception e) {
                            Log.e("ERROR", e.getMessage(), e);
                            return null;
                    }
            }

            protected void onPostExecute(String response) {
                    if(response == null) {
                            response = "THERE WAS AN ERROR";
                            Toast.makeText(MainActivity.this, "post execute", Toast.LENGTH_LONG).show();
                    }
                    progressBar.setVisibility(View.GONE);
                    Log.i("INFO", response);
                    responseView.setText(response);
            }
    }


    }

所以在 public void gg(View v) 我调用 .execute 方法,但它给我一个错误

Unknown type execute

我是否必须向执行方法添加一些参数?
如果是这样呢?

谢谢。

尝试

new RetrieveFeedTask().execute();