我正在为我的应用程序UI使用GitHub FlatUI类。我已经使用FlatButtons
成功生成了我的布局,现在我想为这些按钮设置监听器。正如FlatUI示例代码中所提到的,我在活动中定义了我的按钮,例如:
flatButtons.add((FlatButton) findViewById(R.id.buttonCat));
当然,我已经为所有FlatButtons
声明了一个数组:
private ArrayList<FlatButton> flatButtons = new ArrayList<FlatButton>();
我的问题是如何为此按钮设置监听器? buttonCat
是xml布局中我的FlatButton的button id
,所以我想我应该在我的活动类中的某处定义一个新的FlatButton
,并将buttonCat
引用到它。但是如何?
答案 0 :(得分:1)
FlatButton button = (FlatButton) findViewById(R.id.buttonCat);
button.setOnClickListener(your_listener_here);