图片控件单击中的Listview项不起作用

时间:2017-03-03 08:18:10

标签: java android listview listviewitem

感谢您帮助我。

在ViewPager + Fragment中包含四个页面,包括Fragment包含listview里面的listview按钮,listview自带的click事件也需要使用。在按钮单击事件的列表视图项中,触发器不正确。有时单击无响应,但在交换机片段中单击事件响应和片段切换成功

按钮

由于

说明

  • 也就是说,在自定义适配器中添加imageview点击事件, 点击响应响应不时响应。
  • 共有四个Fragment第四页也有相同的项目 imageview点击事件,但没有问题出现。出现此问题 在第一页。这两个页面代码几乎相同。
Private Sub Arr(ByVal arrRad() As RadioButton, ByVal arrLbl() As Label)
    Dim result As Integer = 0
    Dim temp As Integer = 0

    'arrRad is my control array Radiobutton, arrLbl is my control array Label
    'I have 15 Radiobutton and 3 Label
    For i As Integer = 0 To arrRad.Length - 1 Step 5
        If arrRad(i).Checked = True Then
            temp = arrRad(i).Text.Substring(0, 1)
        ElseIf arrRad(i + 1).Checked = True Then
            temp = arrRad(i + 1).Text.Substring(0, 1)
        ElseIf arrRad(i + 2).Checked = True Then
            temp = arrRad(i + 2).Text.Substring(0, 1)
        ElseIf arrRad(i + 3).Checked = True Then
            temp = arrRad(i + 3).Text.Substring(0, 1)
        ElseIf arrRad(i + 4).Checked = True Then
            temp = arrRad(i + 4).Text.Substring(0, 1)
        Else
            temp = 0
        End If
        result += temp
    Next
    txtKetQua.Text = result.ToString()
End Sub

1 个答案:

答案 0 :(得分:0)

新的OnClickListener()更改为新的View.OnClickListener()