当前位置: 首页 > 英汉互译 > 翻译例子

意图的英语,英转中翻译器

  • 翻译例子
  • 2024-06-25

意图的英语? 那么,意图的英语?一起来了解一下吧。

谷歌翻译在线

meaning ['mi:niŋ]
n. 意义;含义;意图
adj. 意味深长的
v. 意味;意思是(mean的ing形式)
meaning ['mi:niŋ]
vt.mean1的变形
n.1. 含意;意思;意义
2. [古语]意向;意图;用意;目的
3. 重要性;价值
4. 【逻辑学】 内涵;外延
5. 有效的内容;效力
adj.
1. 含意深沉的;意味深长的;富有意味的
2. 怀有特定意图的
近义词:
sense . import .
短语
1. make one's meaning clear说明自己的意思
2. What's the meaning of this?[口语]这是什么意思?这是干什么?
mean1 [mi:n]
vt.
1. 表示…的意思;意思是;作…解释:
例句: She never meant anything of the sort.她决没有那种意思。
What does this word mean?这个词是什么意思?
2. 意味着;即是:例句: The dark clouds mean rain.乌云意味着要下雨。 His promotion means a raise in salary.他的提升意味着要增加薪水。
3. 意指;意谓:例句: Whom did she mean by them?她说的“他们”是指谁? What does he mean by cancelling his performance?他取消演出是什么意思?4. 打算;意欲:例句: I didn't mean you to read the book.我本意不想让你看这本书。
We mean you no harm.我们对你没有恶意。
5. 有某种重要性:例句: Her son means a lot to her.儿子对她来说十分重要。
£30 means everything to a poor man.30英镑对一个穷人来说是至关重要的。6. 预定;注定:例句: She was meant for an engineer.原先打算让她当工程师。
Mother didn't mean to be a teacher, but that's the way it turned out.
母亲本来不想终生当教师,但结果还是走了这条路。
7. 引起;造成
vi.
1. 用意;怀有特定用意2. 有重要意义;有重要性;有影响:例句: Honours mean little to her.
荣誉对她来说是微不足道的。
近义词:
intend .
短语
1. be meant (to do)[主英国英语]必须做;应该做
2. Do you mean to say …?难道…吗? 你的意思是说…吗?
3. mean business见business
4. mean ill (to someone或by someone)(对某人)怀着恶意,(对某人)存心不良5. mean mischief见mischief
6. mean much (或a great deal)to someone对某人极为可贵;对某人很重要
7. mean well by (或towards,to)someone对某人怀好意
8. What do you mean by …?
a. 你说…(或做…)是什么意思?
b. 你怎么胆敢…? 你凭什么竟敢…? [亦作 What on earth do you mean by …?]
9. You don't mean to say so!真的吗?你该不是这个意思吧!
变形:
vt.meantmeaning
meaning ['mi:niŋ]
n.
1. the message that is intended or expressed or signified例句: what is the meaning of this sentence
2. the idea that is intended例句: What is the meaning of this proverb?
adj.rich in significance or implication例句: a meaning lookpregnant with meaning

英文转换成中文

intent是一个意图,一个描述了想要启动一个activity、broadcast或是service的意图。它主要持有的信息是它想要启动的组件(activity、broadcast或是service)。
pendingintent可以看作是对intent的包装。供当前app之外的其他app调用。有点“被动”或是“callback”的意思,但不是严格意义上的“被动”或是“callback”。总之,当前app不能用它马上启动它所包裹的intent。而是在外部app执行这个pendingintent时,间接地、实际地调用里面的intent。pendingintent主要持有的信息是它所包装的intent和当前app的context。正由于pendingintent中保存有当前app的context,使它赋予外部app一种能力,使得外部app可以如同当前app一样的执行pendingintent里的intent,就算在执行时当前app已经不存在了,也能通过存在pendingintent里的context照样执行intent。
intent英文意思是意图,pending表示即将发生或来临的事情。
pendingintent这个类用于处理即将发生的事情。比如在通知notification中用于跳转页面,但不是马上跳转。
intent 是及时启动,intent 随所在的activity 消失而消失。
pendingintent 可以看作是对intent的包装,通常通过getactivity,getbroadcast ,getservice来得到pendingintent的实例,当前activity并不能马上启动它所包含的intent,而是在外部执行 pendingintent时,调用intent的。正由于pendingintent中 保存有当前app的context,使它赋予外部app一种能力,使得外部app可以如同当前app一样的执行pendingintent里的 intent, 就算在执行时当前app已经不存在了,也能通过存在pendingintent里的context照样执行intent。另外还可以处理intent执行 后的操作。常和alermanger 和notificationmanager一起使用。
intent一般是用作activity、sercvice、broadcastreceiver之间传递数据,而pendingintent,一般用在 notification上,可以理解为延迟执行的intent,pendingintent是对intent一个包装。
java代码:
private void shownotify(){
notification notice=new notification();
notice.icon=r.drawable.icon;
notice.tickertext=”您有一条新的信息”;
notice.defaults=notification.default_sound;
notice.when=10l;
// 100 毫秒延迟后,震动 250 毫秒,暂停 100 毫秒后,再震动 500 毫秒
//notice.vibrate = new long[] { 100, 250, 100, 500 };出错?
//notice.setlatesteventinfo(this, “通知”, “开会啦”, pendingintent.getactivity(this, 0, null, 0));
notice.setlatesteventinfo(this, “通知”, “开会啦”, pendingintent.getactivity(this, 0, new intent(this,activity2.class), 0));//即将跳转页面,还没跳转
notificationmanager manager=(notificationmanager)getsystemservice(this.notification_service);
manager.notify(0,notice);
}
1. gsm网络中android发送短信示例
java代码:
string msg =”你好,美女”;
string number = “135****6784″;
smsmanager sms = smsmanager.getdefault();
pendingintent pi = pendingintent.getbroadcast(smsactivity.this,0,new intent(…),0);
sms.sendtextmessage(number, null, msg, pi, null);
toast.maketext(smsactivity.this,”发送成功”,toast.lenght_long).show();
pendingintent就是一个intent的描述,我们可以把这个描述交给别的程序,别的程序根据这个描述在后面的别的时间做你安排做的事情 (by giving a pendingintent to another application, you are granting it the right to perform the operation you have specified as if the other application was yourself,就相当于pendingintent代表了intent)。本例中别的程序就是发送短信的程序,短信发送成功后要把intent广播出 去 。
函数smsmanager.sendtextmessage(string destinationaddress, string scaddress, string text, pendingintent sentintent, pendingintent deliveryintent)中参数解释:
1)pendingintent sentintent:当短信发出时,成功的话sendintent会把其内部的描述的intent广播出去,否则产生错误代码并通过 android.app.pendingintent.onfinished进行回调,这个参数最好不为空,否则会存在资源浪费的潜在问题;
2)pendingintent deliveryintent:是当消息已经传递给收信人后所进行的pendingintent广播。
查看pendingintent 类可以看到许多的send函数,就是pendingintent在进行被赋予的相关的操作。

中英文翻译器在线翻译

这件事渐渐从她记忆里淡漠了。
注意; 考虑
He listened with all his mind.
他全神贯注地听。
意图, 意向
If he's set his mind on doing it, nothing will stop him.
他一旦下决心去做, 任何事情都挡不住他。
理智(与感情相对而言); 精神(与肉体、物质世界等相对而言)
He believes in mind over matter.
他相信精神高于物质。
vt. & vi.留心; 注意
Mind!There is a bus coming!
当心!车来了!
Mind the train!
当心火车!
Mind you finish the work today.
注意, 你今天要把工作干完。
照顾, 照管
She asked her daughter to stay at home and mind the baby.
她叫女儿待在家里照看孩子。
介意; 在乎; 反对
He did not seem to mind.
看来他并不介意。

中英文翻译在线

purpose ['pə:pəs]
vt.
企图,打算(做);决意(做):

We purpose another trial.

我们打算再试一下。


vi.
有目的
n.
1. 意图;目的;意向
2. 意志;决心,决断
3.
(进行中的)行动;观察的结果
4.
(讨论中的)论题;(进行中的)行动
5.
用途;效果;意义

中文转换英文在线翻译器

想法, 感觉, 思维(方法)
You and I are of one mind on that matter.
关于那件事我俩的想法一致。
思维能力, 才智, 理智
Fear evacuated their mind of reason.
恐惧使他们丧失了理智。
记忆(力)
The incident had faded from her mind.
这件事渐渐从她记忆里淡漠了。
注意; 考虑
He listened with all his mind.
他全神贯注地听。
意图, 意向
If he's set his mind on doing it, nothing will stop him.
他一旦下决心去做, 任何事情都挡不住他。
理智(与感情相对而言); 精神(与肉体、物质世界等相对而言)
He believes in mind over matter.
他相信精神高于物质。
vt. & vi.留心; 注意
Mind!There is a bus coming!
当心!车来了!
Mind the train!
当心火车!
Mind you finish the work today.
注意, 你今天要把工作干完。
照顾, 照管
She asked her daughter to stay at home and mind the baby.
她叫女儿待在家里照看孩子。
介意; 在乎; 反对
He did not seem to mind.
看来他并不介意。
He didn't seem to mind public opinion in the least.
他对公众舆论似乎一点都不在乎。
I don't mind you joking. I like it.
我不介意你开玩笑, 我还喜欢你这样呢。
服从, 听从
The dog minds well.
这条狗很驯服。
We should mind the rules.
我们应当服从规定。
vt.专心于
He always minds his work.
他总是专心工作。

以上就是意图的英语的全部内容。

猜你喜欢