我是新來的android.I我試圖鏈接我的片段文件名爲「top_section_fragment」與java類,但我得到一個錯誤,而重寫onCreateView()method.Error說:「不能解決符號R「請幫我解決它。覆蓋onCreateView()方法的錯誤
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;
}
}
您需要導入它,點擊Alt + Enter,然後選擇導入類 –
它可能缺少您的R.java文件..查找您的日誌並檢查錯誤在哪裏?很可能它會在你的一個xml文件中解決它,然後清理並重建它。 –
嘗試清理你的項目 –