我想创建一个具有预定义CustomButton
的{{1}}。
事实上,我的对象将完成与
onClick
有没有办法将CustomButton mButton = getViewById(..);
mButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
show_something()
}
嵌入从Button继承的CustomButton对象?
我想要的是在我的布局XML文件中创建一个Listener
,而不必在我的活动中提到这个按钮,这将给出:
main.xml中:
CustomButton
CustomButton.java:
<LinearLayout xmlns:"...">
<com.mypackage.view.CustomButton
(attributes)/>
</LinearLayout>
myActivity.java
class CustomButton extends Button implements... {
@Override
OnClick (or something like that, that's the core of my question, what to put here)
}
非常感谢。
答案 0 :(得分:24)
你真的很亲密:
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class CustomButton extends Button implements OnClickListener{
public CustomButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public CustomButton(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public CustomButton(Context context) {
super(context);
init();
}
private void init(){
setOnClickListener(this);
}
@Override
public void onClick(View v) {
// Do something
}
}
答案 1 :(得分:3)
在你的按钮类中,只需实现:
@Override
public void onClick(View v) {
showSomething();
}
或者如果您想要更精细的控制:
@Override
public boolean onTouchEvent(MotionEvent event) {
showSomething();
}
您可以通过检查event.getAction()在方法中实现点击逻辑,或者将其发送到GestureDetector以确定何时执行了点击。
答案 2 :(得分:3)
使用该代码:
class CustomButton extends Button implements View.OnClickListener{
CustomButton(Context c, AttributeSet attrs) {
...
setOnClickListener(this);
...
}
@override
public void onClick(View v){
//add your code here
}
}
答案 3 :(得分:0)
当您使用 Kotlin 时:
class TemporyActionButton constructor(
context: Context,
attrs: AttributeSet
) : RelativeLayout(context, attrs), View.OnClickListener {
private val button: MaterialButton
private var event: CustomOnClickListener? = null
init {
inflate(context, attrs)
button = findViewById(R.id.button_action)
button.setOnClickListener(this)
context.theme.obtainStyledAttributes(
attrs, R.styleable.TemporyActionButton, 0, 0
).use {
// styling
}
}
override fun onClick(v: View) {
event?.customOnClick(v)
}
fun setCustomClickListener(event: CustomOnClickListener) {
this.event = event
}
private fun inflate(context: Context, attrs: AttributeSet) {
LayoutInflater.from(context).inflate(R.layout.layout_button_action, this, true)
layoutParams = LinearLayout.LayoutParams(context, attrs)
}
}
fun interface CustomOnClickListener {
fun customOnClick(view: View)
}