Xamarin。 listview单击列表项内的按钮

时间:2015-07-15 18:16:36

标签: android-listview xamarin xamarin.android

我正在创建一个包含许多元素的listview,其中一个元素是expand按钮。当我点击展开按钮时,我想显示一些隐藏在每个列表项中的按钮。 (即每个列表项都有单独的按钮)

我知道如何使用listview项目中的按钮添加click事件

在我的自定义适配器中..

getView(){

    var expandBtn = findViewById(_)..

    expandBtn.click += (sender,e)=>{
       //  this block should do show hide of my other buttons.
       //  how to get them here. 
    };    

}

0 个答案:

没有答案