对于知道它是如何工作的人来说,这应该是一个简单的问题。
TextView myText = (TextView) findViewById(R.id.myText);
Button btn = (Button) findViewById(R.id.button);
(Textview)/(Button) 有什么作用,它是什么?
是否相当于
TextView myText = new TextView(findViewById(R.id.myText));
Button btn = new Button(findViewById(R.id.button));
另外,我可能弄错了,但这不仅在android中是java语言吗?
谢谢
注意:我没有问什么是文本视图或按钮,我问的是这是一种实例化、强制转换等。