不幸的是,由于复制和粘贴,主要活动已经停止

时间:2016-02-22 09:08:33

标签: android android-layout android-studio android-emulator android-xml

我开发了一个在android studio中工作的程序。 该程序的三个组件是MainActivity.java,activity_main.xml和list_item.xml,如下所示

2 个答案:

答案 0 :(得分:0)

你应该移动

TextView textView = (TextView) findViewById(R.id.textView3);

textView.setText("Welcome "+username);

到onCreateView而不是UserProfile.java中的onCreate

您可以在此处查看答案:Difference and uses of onCreate(), onCreateView() and onActivityCreated() in fragments以获取详细信息。

答案 1 :(得分:0)

看起来像

setContentView(R.layout.activity_user_profile);

应该是

setContentView(R.layout.user_activity_profile);

UserProfile onCreate方法中,因为您发布的xml是user_activity_profile.xml