如何将数据放在listView上,由另一个活动传递?

时间:2013-11-11 14:51:40

标签: android listview android-listview

这是我的第二课。我想要的是将这个“选择”放在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();

1 个答案:

答案 0 :(得分:0)

请参阅以下教程,这是一个简单的列表视图示例。你已经有了你的字符串,所以把它放在他的表演方式中。

http://www.javacodegeeks.com/2013/06/android-listview-tutorial-and-basic-example.html

planetsList.add(createPlanet("planet", choice));