Android的按键setOnClickListener设计帮助 [英] Android Button setOnClickListener Design Help

查看:141
本文介绍了Android的按键setOnClickListener设计帮助的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我建立一个Android应用程序。我注意到,我创建了code多次重复在我的每个类与此类似:

I am building an Android Application. I've noticed I am creating many repetitions of code similar to this in each of my classes:

Button buttonX = (Button)findViewById(R.id.buttonXName);
// Register the onClick listener with the implementation above
buttonX.setOnClickListener(new OnClickListener() {
    public void onClick(View v)
    {
        //DO SOMETHING! {RUN SOME FUNCTION ... DO CHECKS... ETC}
    } 
});

我现在有15个按键,这是使我的code难看。有没有人有一个类或一些例子,我怎么可以把所有这些codeS为更有效的,这样我就可以:

I now have 15 buttons and this is making my code ugly. Does anyone have a class or some examples, on how I can turn all these codes into something more efficient, so I can:

  1. 创建按钮OBJ {按钮buttonX(按钮)findViewById(R.id.buttonXName);}
  2. 设置监听{buttonX.setOnClickListener(新OnClickListener()}
  3. 确定它是否被点击{公共无效的onClick(视图v)}
  4. 然后运行特定的code为每个按钮?

如果有人知道任何事情,我倒是AP preciate吧。

If anyone knows anything, I'd appreciate it.

推荐答案

如果你的目标1.6或更高版本,可以使用的安卓的onClick XML属性去除一些重复的code。请参见这个博客帖子通过罗曼盖伊。

If you're targeting 1.6 or later, you can use the android:onClick xml attribute to remove some of the repetitive code. See this blog post by Romain Guy.

<Button 
   android:height="wrap_content"
   android:width="wrap_content"
   android:onClick="myClickHandler" />

和Java类,使用这些低于code线:

And in the Java class, use these below lines of code:

class MyActivity extends Activity {
    public void myClickHandler(View target) {
        // Do stuff
    }
}

这篇关于Android的按键setOnClickListener设计帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆