今天我在android studio中遇到了一个错误。我正在尝试在应用程序中创建一个关于我们的屏幕。已创建布局xml文件。任何帮助表示赞赏。感谢。
错误:无法解析方法setcontentview(int)
package example.com;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class AboutFragment extends android.app.Fragment {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.about_screen);
}
}
答案 0 :(得分:11)
您的课程已延长Fragment
,您有setContentView(R.layout.about_screen);
。 setContentView
是Activity类的一种方法。
取而代之的是about_screen.xml
onCreateView
Fragment
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.about_screeen, container, false);
return rootView;
}