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