简体   繁体   English

Android ImageButton OnTouchListener无法正常工作

[英]Android ImageButton OnTouchListener not working

Okay, there's a weird thing happening in me. 好吧,我发生了一件奇怪的事情。 I have an ImageButton named tab_btn from other layout which I imported and set onTouchListener which is working. 我从其他布局导入了一个名为tab_btn的ImageButton,并导入了它并设置了onTouchListener可以正常工作。

package com.xx 包com.xx

import kotlinx.android.synthetic.main.tab_btn_layout.* 导入kotlinx.android.synthetic.main.tab_btn_layout。*

import kotlinx.android.synthetic.main.btnNext_layout.* 导入kotlinx.android.synthetic.main.btnNext_layout。*

    class EventDetails : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_event_details)

        tab_btn.setOnTouchListener(object  : View.OnTouchListener {
            override fun onTouch(view: View?, event: MotionEvent?): Boolean {
                if (event!!.action ==  MotionEvent.ACTION_DOWN) {
                    val icon: Drawable = ContextCompat.getDrawable(applicationContext, R.drawable.talk_bt_tab)
                    icon.setColorFilter(Color.GRAY,PorterDuff.Mode.MULTIPLY)
                    tab_btn.setImageDrawable(icon)
                }else if (event!!.action ==  MotionEvent.ACTION_UP) {
                    tab_btn.clearColorFilter()
                }

                return true
            }
        })

        btnNext.setOnTouchListener(object : View.OnTouchListener {
            override fun onTouch(p0: View?, ev: MotionEvent?): Boolean {
                if (ev!!.action == MotionEvent.ACTION_DOWN){
                    val icon: Drawable = ContextCompat.getDrawable(applicationContext, R.drawable.layer_bt_next)
                    icon.setColorFilter(Color.GRAY,PorterDuff.Mode.MULTIPLY)
                    btnNext.setImageDrawable(icon)
                }else if(ev!!.action == MotionEvent.ACTION_UP){
                    btnNext.clearColorFilter()
                }

                return true
            }
        })
    }
}

and below that I have another ImageButton from other layout named btnNext. 在下面,我还有另一个来自btnNext布局的ImageButton。 I set the same OnTouchListener on it. 我在上面设置了相同的OnTouchListener。 But it gives me error . 但这给了我错误。

And btnNext gives me error: 而btnNext给我错误:

Attempt to invoke virtual method 'void android.widget.ImageButton.setOnTouchListener(android.view.View$OnTouchListener)' on a null object reference 尝试在空对象引用上调用虚拟方法'void android.widget.ImageButton.setOnTouchListener(android.view.View $ OnTouchListener)'

note: I have imported both layout of the Image button. 注意:我已经导入了图像按钮的两种布局。 tab_btn is working but btnNext is not working. tab_btn工作正常,但btnNext不工作。

Okay, I solved my own problem. 好吧,我解决了自己的问题。

The real suspect is that my btnNext is in the fragment(viewpager) which I have to inflate first the rootview in oncreateview method. 真正的怀疑是我的btnNext在fragment(viewpager)中,我必须先在oncreateview方法中将rootview膨胀。

note: you cannot access the element of the fragment without inflating it. 注意:如果不膨胀片段,就无法访​​问该片段的元素。

here's ma code: 这是ma代码:

override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState: Bundle?): View {
    val rootView = inflater!!.inflate(R.layout.btnNext_layout, container, false)

    var next : ImageButton = rootView.findViewById(R.id.btnNext)
    next.setOnTouchListener(object : View.OnTouchListener {
        override fun onTouch(p0: View?, ev: MotionEvent?): Boolean {
            if (ev!!.action == MotionEvent.ACTION_DOWN){
                val icon: Drawable = ContextCompat.getDrawable(activity.applicationContext, R.drawable.layer_bt_next)
                icon.setColorFilter(Color.GRAY, PorterDuff.Mode.MULTIPLY)
                btn_next.setImageDrawable(icon)
            }else if (ev!!.action == MotionEvent.ACTION_UP){
                val icon: Drawable = ContextCompat.getDrawable(activity.applicationContext, R.drawable.layer_bt_next)
                icon.setColorFilter(Color.WHITE, PorterDuff.Mode.MULTIPLY)
                btn_next.setImageDrawable(icon)
            }

            return true
        }
    })
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM