-1

Getting this specific error : Cannot be resolved or is not a Field

enter image description here

enter image description here

I tried Cleaning the Project and Debugged (F11) and Build the project. But still the same problem persists.

enter image description here

if(from[i].equals("me")){
    mView = mLayoutInflater.inflate(R.layout.bubble_left, null); //error
}else{
    mView = mLayoutInflater.inflate(R.layout.bubble_right, null); //error
}

chatMessageMicrophone = (ImageButton) findViewById(R.id.chatMessageMicrophone); //error
chatMessageSend = (ImageButton) findViewById(R.id.chatMessageSend); //error

Similarly, there are 30 more errors like this.

Hamid Shatu
  • 9,664
  • 4
  • 30
  • 41
Zero
  • 357
  • 2
  • 5
  • 20

1 Answers1

2

May be you have imported the android.R file instead of your_package.R file. If you have done that then replace the below import statement

import android.R;

with

import your_package.R;
Hamid Shatu
  • 9,664
  • 4
  • 30
  • 41