I open the project (opensource) to see the implementation. Everything seems normal, but swears at R:
@Override protected void onFinishInflate() { super.onFinishInflate(); mTitle = (TextView) findViewById(R.id.title); mAuthor = (TextView) findViewById(R.id.author); mPubDate = (TextView) findViewById(R.id.pub_date); } What does this mean and what are the ways to solve this problem?
