建立蓝牙连接时,哪些方法无法获取BluetoothAdapter对象()。
A. BluetoothAdapter.getDefaultAdapter ()
BluetoothAdapter.BluetoothAdapterAdapter()
C. BluetoothAdapter adapter new BluetoothAdapter()
D. BluetoothAdapter.getBluetoothAdapterAdapter()
查看答案
处理菜单项单击事件的方法包含以下那几个()。
A. 使用onOptionsItemSelected(MenuItem item)响应
B. 使用onMenuItemSelected(int featureId ,MenuItem item)响应
C. 使用onMenuItemClick(MenuItem item)响应
D. 使用 onCreateOptionsMenu(Menu menu)响应
被称为“苹果之父”的是()。
A. Tim Cook
B. Steve Jobs
C. Bill Gates
D. Andy Rubin
下面说法正确的是()。
A. 在四大组件之间传递数据时,Bundle常被用来连接网络。
B. 在onCreate()方法中,可以不调用父类的同名方法。
C. onCreate()方法是具有参数的,也有返回值。
D. Bundle类与Map不一样,但它是一个key-value类型。
在Activity中需要找到一个id是bookName的的TextView组件,下面哪种语句写法是正确的()。
A. extViewtv=this.findViewById(R.id.bookName)
B. TextViewtv=(TextView)this.findViewById(R.string.bookName)
C. TextViewtv=(TextView)this.findViewById(R.id.code)
D. TextViewtv=(TextView)this.findViewById(R.id.bookName)