我今天在android studio遇到錯誤。我正在嘗試在應用中創建一個關於我們的屏幕。佈局xml文件已經創建。任何幫助表示讚賞。謝謝。android無法解析方法setcontentview
錯誤:無法解析方法的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);
}
}
使用onCreateView()在Fragmnets,的setContentView(R.layout.about_screen)的
onCreateView
膨脹about_screen.xml
;在Activity中工作。 –