这是我的第二课。我想要的是将这个“选择”放在listView
上 listViewDesc = (ListView) findViewById(R.id.lvDesc);
listViewPrice = (ListView) findViewById(R.id.lvPrice);
Bundle extras = getIntent().getExtras();
String choice = null;
if(extras != null)
choice = extras.getString("name");
Toast.makeText(getApplicationContext(), choice, Toast.LENGTH_SHORT).show();
答案 0 :(得分:0)
请参阅以下教程,这是一个简单的列表视图示例。你已经有了你的字符串,所以把它放在他的表演方式中。
http://www.javacodegeeks.com/2013/06/android-listview-tutorial-and-basic-example.html
planetsList.add(createPlanet("planet", choice));