0

我真的需要帮助。我有一个列表视图,列表中有按钮。我想要做的是获取按下按钮的当前列表的值..(id和名称)我有一个myClickHandler,当按下按钮时它会调用这个..

            public void myClickHandler(View v){
     ListView lvItems = getListView();
    String name = null ;
    for (int i=0; i<lvItems.getChildCount(); i++) 
        {
    }

        AlertDialog alertDialog = new AlertDialog.Builder(
            AllProductsActivity.this).create();
        alertDialog.setTitle("Alert Dialog");
        alertDialog.setMessage("You have selected "+ name);
        alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(getApplicationContext(), "You clicked on OK", Toast.LENGTH_SHORT).show();
    }
            });

并将显示一些带有给定详细信息的alertDialog ..

非常感谢任何愿意帮助我的人..

4

2 回答 2

0

如果您正在从单击的按钮行中查找信息,您可以执行以下操作:

public void myClickHandler(View v){ 
    LinearLayout ll = v.getParent();  // v is the button, the parent should be the rowlayout, assuming LinearLayout
    TextView tv = ll.findViewById(R.id.listviewtext);  // find your textview in the LinearLayout for the row
    String ListText = tv.getText().toString();  // Get the text form the TextView

    // rest of your code
}
于 2012-05-20T20:29:11.960 回答
0

请看listview的教程: http ://www.youtube.com/watch?v=wDBM6wVEO70

然后,通过 getView 使每个视图的 onClickListener 相同,并从它们的 viewHolder 中获取值。而已。

于 2012-05-20T20:34:48.877 回答