how to make text view clickable in android?

前端 未结 11 1576
轮回少年
轮回少年 2020-12-01 18:04

is it possible in android to make text view clickable if yes then how ??and if not then what will be the way for make a label clickable??i want to implement a call activit

11条回答
  •  爱一瞬间的悲伤
    2020-12-01 18:39

    We can also get click event on TextView same as Button & ImageView.

    and method is also same for all View.

    like as

    view.setOnClickListener(new View.OnClickListener() {
    
                @Override
                public void onClick(View v) {
                    // TODO Auto-generated method stub
    
                }
            });
    

提交回复
热议问题