我的代码:
public class proclass extends AppCompatActivity {
ArrayList<HashMap<String, String>> arraylist;
String url = "";
ProgressDialog pd;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ViewGroup content = (ViewGroup) findViewById(R.id.content_master);
getLayoutInflater().inflate(R.layout.activity_profile, content, true);
答案 0 :(得分:0)
您在onCreate()
中使用了错误的代码,应该是:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_profile);
ViewGroup content = (ViewGroup) findViewById(R.id.content_master);
}