android中,如何让布局文件中定义的一个Layout接收点击事件,并为它添加Listener。或者是类似的功能实现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android中,如何让布局文件中定义的一个Layout接收点击事件,并为它添加Listener。或者是类似的功能实现相关的知识,希望对你有一定的参考价值。
给linearlayout设置一个id:myf_linl_login;
找出控件View home = view.findViewById(R.id.myf_linl_login);之后
linear.setOnClickListener(new View.OnClickListener()
public void onClick(View v)
//这里写你的点击事件
);
***看清楚***
View.OnClickListener
参考技术A xml里面layout设置id android:id=“@+id/linear” 代码中 LinearLayout linear=(Linearlayout)findViewById(R.id.linear)之后 linear.setOnClickListener(new OnClickListener()
public void onClick(View v)
//这里写你的点击事件
);
以上是关于android中,如何让布局文件中定义的一个Layout接收点击事件,并为它添加Listener。或者是类似的功能实现的主要内容,如果未能解决你的问题,请参考以下文章
布局TextView和EditText区别,layout_width和lay_weight区别--Android Studio
android listview怎么加载自定义布局,还必须是在代码里面写