刷题
导入试题
【单选题】
关于BroadcastReceiver的说法不正确的是___
A. 是用来接收广播Intent的
B. 一个广播Intent只能被一个订阅了此广播的BroadcastReceiver所接收
C. 对有序广播,系统会根据接收者声明的优先级别按顺序逐个执行接收者
D. 接收者声明的优先级别在<intent-filter>的android:priority属性中声明,数值越大优先级别越高
查看试卷,进入试卷练习
微信扫一扫,开始刷题
答案
B
解析
暂无解析
相关试题
【单选题】
使用MediaPlayer播放保存在sdcard上的mp3文件时___
A. 需要使用MediaPlayer.create方法创建MediaPlayer
B. 直接newMediaPlayer即可
C. 需要调用setDataSource方法设置文件源
D. 直接调用start方法,无需设置文件源
【单选题】
在android中使用RadioButton时,要想实现互斥的选择需要用的组件是___
A. ButtonGroup
B. RadioButtons
C. CheckBox
D. RadioGroup
【单选题】
能够自动完成输入内容的组件是___
A. TextView
B. EditText
C. ImageView
D. AutoCompleteTextView
【单选题】
创建子菜单的方法是___
A. add
B. addSubMenu
C. createSubMenu
D. createMenu
【单选题】
MediaPlayer播放资源前,需要调用哪个方法完成准备工作___
A. setDataSource
B. prepare
C. begin
D. pause
【单选题】
☆处理菜单项单击事件的方法不包含___
A. 使用onOptionsItemSelected(MenuItem item)响应
B. 使用onMenuItemSelected(int featureId ,MenuItem item)响应
C. 使用onMenuItemClick(MenuItem item)响应
D. 使用onCreateOptionsMenu(Menu menu)响应 //创建菜单
【单选题】
android中文件操作模式中表示只能被本应用使用,写入文件会覆盖的是___
A. MODE_APPEND
B. MODE_WORLD_READABLE
C. MODE_WORLD_WRITEABLE
D. MODE_PRIVATE
【单选题】
进度条中哪个属性是设置进度条大小格式的___
A. android:secondaryProgress
B. android:progress
C. android:max
D. style
【单选题】
☆下列用以显示一系列图像的是___
A. ImageView
B. Gallery
C. ImageSwitcher
D. GridView
【单选题】
表示下拉列表的组件是___
A. Gallery
B. Spinner
C. GridView
D. ListView
【单选题】
关于AlertDialog的说法不正确的是___
A. 要想使用对话框首先要使用new关键字创建AlertDialog的实例
B. 对话框的显示需要调用show方法
C. setPositiveButton方法是用来加确定按钮的
D. setNegativeButton方法是用来加取消按钮的
【单选题】
下列说法错误的是___
A. Button是普通按钮组件,除此外还有其他的按钮组件
B. TextView是显示文本的组件,TextView是EditText的父类
C. EditText是编辑文本的组件,可以使用EditText输入特定的字符
D. ImageView是显示图片的组件,可以通过设置显示局部图片
【单选题】
下列哪个是SqlLite下的命令___
A. shell
B. push
C. quit
D. keytool
【单选题】
下列关于如何使用Notification,不对的是___
A. notification需要NotificatinManager来管理
B. 使用NotificationManager的notify方法显示notification消息
C. 在显示Notification时可以设置通知时的默认发声,震动等
D. Notification中有方法可以清除消息
【单选题】
上下文菜单与其他菜单不同的是___
A. 上下文菜单项上的单击事件可以使用onMenuItemSelected方法来响应
B. 上下文菜单必须注册到指定的view上才能显示
C. 上下文菜单的菜单项可以添加,可以删除
D. 上下文菜单的菜单项可以有子项
【单选题】
拖动条组件是___
A. RatingBar
B. ProgressBar
C. SeekBar
D. ScrollBar
【单选题】
读取文件内容的首要方法是___
A. openFileOutput
B. read
C. write
D. openFileInput
【单选题】
关于隐式Intent正确的是___
A. android中使用IntentFilter 来寻找与隐式Intent相关的对象
B. 通过组件的名称寻找与intent相关联的对象
C. 隐式Intent更多用于在应用程序内部传递消息
D. 一个声明了IntentFilter的组件只能响应隐式Intent请求
【单选题】
多选框被选择事件通常用___
A. setOnClickListener
B. setOnCheckChangeListener
C. setOnMenuItemSelectedListener
D. setOnCheckedListener
【单选题】
下列不属于service生命周期的方法是___
A. onCreate
B. onDestroy
C. onStop
D. onStart
【单选题】
绑定Service的方法是___
A. ,bindService
B. , startService
C. ,onStart
D. ,onBind
【单选题】
android是如何组织Activity的___
A. 以栈的方式组式Activity
B. 以队列的方式组织Activity
C. 以树形方式组织Activity
D. 以链式方式组织Activity。
【单选题】
onPause什么时候调用___
A. 当界面启动时
B. 当onCreate方法被执行之后
C. 当界面被隐藏时
D. 当界面重新显示时
【单选题】
在Activity中,如何获取service对象___
A. 可以通过直接实例化得到。
B. 可以通过绑定得到。
C. 通过startService()
D. 通过getService()获取。
【单选题】
在表格布局中,android:collapseColumns="1,2"的含义是: ___
A. 在屏幕中,当表格的列能显示完时,显示1,2列
B. 在屏幕中,当表格的列显示不完时,折叠
C. 在屏幕中,不管是否能都显示完,折叠1、2列
D. 在屏幕中,动态决定是否显示表格。
【单选题】
创建Menu需要重写的方法是___
A. onOptionsCreateMenu(Menu menu、
B. onOptionsCreateMenu(MenuItem menu、
C. onCreateOptionsMenu(Menu menu)
D. onCreateOptionsMenu(MenuItem menu)
【单选题】
在使用SQLiteOpenHelper这个类时,它的哪一个方法是用来实现版本升级之用的___
A. onCreate()
B. onCreade()
C. onUpdate()
D. onUpgrade()
【单选题】
ScrollView中,可以直接包含多少个组件___
A. 三个
B. 两个
C. 一个
D. 无数个
【单选题】
关于适配器的说法正确的有___
A. 它主要是用来存储数据
B. 它主要用来把数据绑定到组件上
C. 它主要用来解析数据
D. 它主要用来存储xml数据
【单选题】
Matrix类的作用___
A. 可以存储缩小或放大比列
B. 存储文件中的图片信息
C. 存储资源中的图片信息
D. 存储内存中的图片信息
【单选题】
关于Activity说的法不正确的是___
A. Activity是为用户操作而展示的可视化用户界面
B. 一个应用程序可以有若干个Activity
C. Activity可以通过一个别名去访问
D. Activity可以表现为一个漂浮的窗口
【单选题】
下列关于Service的描述,正确的是___
A. Servie主要负责一些耗时比较长的操作,这说明Service会运行在独立的子线程中
B. 每次调用Context类中的StartService()方法后都会新建一个Service实例
C. 每次启动一个服务时候都会先后调用onCreate()和onStart()方法
D. 当调用了Context类中的StopService()方法后,Serviece中的onDestroy()方法会自动回调
【单选题】
激活Activity的方法是___
A. runActivity()
B. goActivity()
C. startActivity(、
D. startActivityForIn()
【单选题】
下列样式表定义正确的是___
A. <style name="text"><item name="android:textColor">#FF00FF</item></style>
B. <resources><style name=" android:textColor ">#FF00FF </style></resources>
C. <resources><style name="text"><item name=" android:textColor">#FF00FF</item></style></resources>
D. <resources><style name="text"><item name="textColor">#FF00FF</item></style></resources>
【单选题】
创建Menu需要重写的方法是___
A. onOptionsCreateMenu(Menu menu、
B. onOptionsCreateMenu(MenuItem menu、
C. onCreateOptionsMenu(Menu menu)
D. onCreateOptionsMenu(MenuItem menu)
【单选题】
在使用SQLiteOpenHelper这个类时,它的哪一个方法是用来实现版本升级之用的___
A. onCreate()
B. onCreade()
C. onUpdate()
D. onUpgrade()
【单选题】
关于android进程,说法不正确的是___
A. 组件运行所在的进程,是由androidmanifest.xml决定,它可以指定该组件运行于哪个进程。
B. 当急需内存时,android会决定优先关闭那些空闲的进程
C. 背景进程是不为用户所见的Activity,但是还会有可能被用户看到,所以它不能被杀死
D. 可视进程一般不会不被系统所杀死
【单选题】
在Activity的生命周期中,当它从可见状态转向半透明状态时,它的哪个方法必须被调用___
A. onStop()
B. onPause()
C. onRestart()
D. onStart()
【单选题】
关于线程说法不正确的是___
A. 在android中,我们可以在主线程中,创建一个新的线程
B. 在创建的新线程中,它可以操作UI组件
C. 新线程可以和Handler共同使用
D. 创建的Handler对象,它隶属于创建它的线程
【单选题】
当Activity被消毁时,如何保存它原来的状态___
A. 实现Activity的onSaveInstanceState()方法
B. 实现Activity的onSaveInstance()方法
C. 实现Activity的onInstanceState()方法
D. 实现Activity的onSaveState()方法
推荐试题
【单选题】
- How do I transfer calls? ____
A. Do as you like.
B. It is a bit difficult.
C. Let me show you.
D. Not at all.
【单选题】
- Thanks for inviting me, John, but I've already made other plans. ____. Maybe another time.
A. I hope you enjoy it
B. That's good
C. Oh! I'm sorry to hear that
D. Great! I really had a good time
【单选题】
- Thanks for the lovely party and the delicious food. ____
A. No, thanks.
B. Never mind.
C. Thank you for coming.D.That's all right.
【单选题】
- Why didn't you tell me? ____
A. Sorry, I forgot.
B. I'm sorry you should wait.
C. I don't know.
D. I'd love to.
【单选题】
- What do you plan to do after the exam? ____ How about you?
A. I hate taking exams.
B. I like making plans.
C. Nothing special.
D. I've changed my mind.
【单选题】
- Tom told me that you collect stamps. ____
A. What do you mean?
B. I don't think so.
C. Why did he tell you?
D. Yes, I do. Do you?
【单选题】
- This is a challenging job. Who wants it?____
A. I'll take it.
B. It's a good idea.
C. You bet!
D. No sweat!
【单选题】
- I'm taking my driving test tomorrow. ___!
A. Cheers
B. Good luck
C. Come on
D. Congratulations
【单选题】
- ABC Company, may I help you? ____
A. I am Jack. May I speak to Miss Jenny?
B. This is Jack speaking. May I speak to Miss Jenny?
C. This is Jack speaking. Can I find Miss Jenny?
D. I am Jack. Can I find Miss Jenny?
【单选题】
- You have won the football game. Congratulations! ____
A. We are really lucky.
B. No one else could do it.
C. Oh, not really.
D. It's nice of you to say so.
【单选题】
- Excuse me, when will the 17:15 train arrive____
A. I don't tell you.
B. It's been delayed one hour.
C. You have to be patient.
D. Don't ask me.
【单选题】
- Is John there?____
A. Speaking.
B. I'm not Mary.
C. Who are you?
D. Mary is well today.
【单选题】
- Would you like to join us for Sunday dinner____
A. It's nice of you to invite me.
B. How about the food?
C. I like onion soup.
D. I'm sorry I missed the fun last time.
【单选题】
- Could you tell me where the nearest parking lot is?____
A. Don't ask me.
B. Parking is very difficult.
C. Sorry, I'm a stranger here.
D. Sorry, you can't park here.
【单选题】
- Sorry, ___
A. here you are.
B. take it.
C. it's taken.
D. never mind.
【单选题】
-What's this in English? ____
A. It's a map.
B. That is a map.
C. Yes, it's a map.
D. No, it isn't.
【单选题】
- I hear you got through your exam. Congratulations!____
A. No. I didn't do well enough.
B. Who told you that?
C. Thanks.
D. Yes, I got a good mark.
【单选题】
- Don't forget to come to my party this evening!___
A. I can't.
B. I won't.
C. I don't.
D. I will.
【单选题】
- Jim, please don't put your head out of the window on the bus. It's dangerous!___
A. Good idea.
B. Sorry, I won't do it again.
C. It doesn't matter.
D. It's good.
【单选题】
-How about going fishing?___, I have no patience for that.
A. Excuse me
B. Sorry
C. Pardon
D. Apologize
【单选题】
- Thanks for the lovely and delicious food______.
A. No thanks
B. Never mind
C. All right
D. My pleasure
【单选题】
- Haven't seen you for ages. Let's have a get-together next week._____
A. Great idea.
B. Welcome!
C. Yes, of course.
D. No, thanks.
【单选题】
- Do you mind if I switch off the radio? ______. Go ahead.
A. Never mind
B. No way
C. No, not at all
D. No, you'd better not
【单选题】
- Could I use your bike for a moment? ___
A. It's well.
B. It doesn't matter.
C. By all means.
D. I have no idea.
【单选题】
-How do you like the story?_______.
A. I'd like to read it
B. I like it very much
C. fine, thank you
D. It's very interesting
【单选题】
- I'll sorry to trouble you.______.
A. Don't say so
B. OK
C. It doesn't matter
D. That's fight
【单选题】
- We ordered 20 boxes of your products, but we have only got 19. - ____
A. You do not have to.
B. It does not matter.
C. We will send another tomorrow.
D. Nothing serious.
【单选题】
--Will you please give the note to him? _________.
A. Certainly, I'll give it to him
B. No, please not
C. Sorry, I don't
D. Yes, please do
【单选题】
- Thank you ever so much for your lovely gift____
A. Never mind
B. I'm glad you like it.
C. Please don't say so.
D. No, It's not so good.
【单选题】
- I'd like to invite you to dinner this Saturday, Mr. Smith.____
A. Oh, no. let's not.
B. I'd rather stay at home.
C. I'm sorry, but I have other plans.
D. Oh, no. That'll be too much trouble.
【单选题】
- Could you please open the window?____
A. I can't.
B. Go ahead.
C. Sure.
D. It's really very kind.
【单选题】
- Do you think I can borrow your bike for a few hours?____
A. I'm afraid you can.
B. I'm sorry, but I really need it this afternoon.
C. Yes, I don't think so.
D. I'll think about it later.
【单选题】
- Thank you very much for the dictionary you sent me.____
A. No thanks.
B. I'm glad you like it.
C. Please don't say so.
D. No, it's not so good.
【单选题】
- How do you like the movie we saw yesterday?____
A. You are welcome.
B. How about you?
C. I've never seen a better movie than it.
D. It is very expensive.
【单选题】
- What do you think of your new teacher____
A. He came to teach us last week.
B. He teaches us English.
C. He has two children.
D. He is very nice.
【单选题】
- Are you going to have a holiday?____
A. Not until next week.
B. Three weeks ago.
C. To Beijing.
D. I'm pleased to hear that.
【单选题】
- You seem to be lost. Need help? ____
A. Yes, would you please help me with the bag?
B. Help me find my key, please.
C. Yes, with pleasure.
D. I'm looking for Zhongshan Road.
【单选题】
- Can you help me clear up the mess____
A. Yes, it doesn't matter.
B. No, that's OK.
C. Yes, help yourself.
D. No problem.
【单选题】
- Does No.20 bus stop at our school?____
A. I go to school by bus.
B. I'm afraid not.
C. You are welcome.
D. I'll not take No.20 bus.
【单选题】
- Can I help you? ____
A. Sorry, I don't need your help.
B. What help can you give us?
C. I'd like to try on these shoes, please.
D. Thanks. You are welcome.
欢迎使用我爱刷题
×
微信搜索我爱刷题小程序
温馨提示
×
请在电脑上登陆“www.woaishuati.com”使用