我收到了这个错误,因为你可以看到我添加了我从第一个活动中获取的数据并将其存储到第二个活动中的my数组中。 然后我使用数组填充列表视图。所以问题是每当我点击第一个视图上的保存按钮 公共类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<String> dataList = new ArrayList<String>();
dataList.addAll(Arrays.asList(dataUser));
// Create ArrayAdapter using the planet list.
ArrayAdapter<String> listAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, dataList);
// Set the ArrayAdapter as the ListView's adapter.
lv.setAdapter(listAdapter);
}
}
答案 0 :(得分:15)
您的代码中有2个super.onCreate(savedInstanceState);
,请删除其中一个。
答案 1 :(得分:0)
所以我删除了extrat super.onCreate(savedInstanceState);我有,但它看起来像我的编辑文本之一传递一个零值。所以我去了每一行,但你可以看到所有的edixtext传递的不同的null http://pastebin.com/mys3R8QQ