Android如何投射为Button

时间:2011-05-05 18:50:36

标签: android button

嘿 所以我正在处理这段代码,我需要在参数中投射一个findViewById(R.id.foo)作为Button。什么是最少的内存消耗方式?或者我应该更改参数以使用View而不是Button?

1 个答案:

答案 0 :(得分:1)

Button fooButton = (Button)findViewById(R.id.foo);