我是android的新手。我正在尝试将名为“top_section_fragment”的片段文件与java类链接但我在覆盖onCreateView()方法时遇到错误。错误说“无法解析符号R”请帮帮我解决它。
package com.example.abdulrafay.myapplication;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class topsectionfragment extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view=inflater.inflate(R.layout.top_section_fragment,container,false);
return view;
}
}
答案 0 :(得分:0)
您错过了导入:
btnGo.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent next = new Intent(ActivityC.this, ActivityD.class);
startActivity(next);
setResult(RESULT_OK, next);
finish();
}
});
如果仍未找到,则表示尚未生成。
在这种情况下,你可以这样做:Build - >重建项目。