I have found numerous posts about this issue and read through them. I have tried rebuilding the project, do a project clean and a gradle-clean as well still didn't help.
Perhaps there's something wrong with my codes?
The error I get lies in "setContentView(R.layout.read_comments)" cannot resolve symbol R
Here is my code:
package com.example.mysqltest;
import android.app.Activity;
import android.os.Bundle;
public class ReadComments extends Activity{
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.read_comments);
    }
}
 
     
     
     
    