当前位置:  开发笔记 > 编程语言 > 正文

无法启动活动ComponentInfo ..... java.lang.IllegalStateException:已经附加

如何解决《无法启动活动ComponentInfo..java.lang.IllegalStateException:已经附加》经验,为你挑选了1个好方法。

我得到了这个错误,因为你可以看到我添加了我从第一个活动中抓取的数据并将其存储到第二个活动中的我的数组中.然后我使用数组来填充列表视图.所以问题是每当我点击第一个视图上的保存按钮时 公共类Main2Activity扩展AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main2);
    super.onCreate(savedInstanceState);
    // setContentView(Your_Layout);
    //Bundle extras = null;
    //if(getIntent().getExtras() != null){
    //    extras = getIntent().getExtras();
    //}

    Intent intent = getIntent();
    //  ListView lv = (ListView) findViewById(R.id.View);

    String data = intent.getStringExtra("data");
    String first = intent.getStringExtra("stringOne");
    String second = intent.getStringExtra("stringTwo");
    String Third = intent.getStringExtra("stringThree");
    String Fourth = intent.getStringExtra("stringFour");
    String Fifth = intent.getStringExtra("stringFive");
    String Sixth = intent.getStringExtra("stringSix");

    // Find the ListView resource.
    ListView lv = (ListView) findViewById( R.id.View );

    // Create and populate a List of planet names.
    String[] dataUser = new String[] { first,second,Third,Fourth,Fifth,Sixth};
    ArrayList dataList = new ArrayList();
    dataList.addAll(Arrays.asList(dataUser));

    // Create ArrayAdapter using the planet list.
    ArrayAdapter listAdapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, dataList);

    // Set the ArrayAdapter as the ListView's adapter.
    lv.setAdapter(listAdapter);
}

}



1> Malek Hijazi..:

super.onCreate(savedInstanceState);的代码中有2个,删除其中一个.

推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有