Very frustrating problem I have here. I have this code:
Button b = findViewById(android.R.id.button1);
And I\'m getting this error on it:
remove android.R from packages and import your R.
android.R from packages
R
import com.companyname.productname.R;
and change also button refrence
Button b = (Button)findViewById(R.id.button1); ^^^^^^^^^^^^