Android的中文叫安卓系统,那Windows Mobile中文叫什么

a8ma2022-10-04 11:39:541条回答

Android的中文叫安卓系统,那Windows Mobile中文叫什么
英文盲 买手机时读不出Windows Mobile系统,所以请教中文读法,

已提交,审核后显示!提交回复

共1条回复
jijijijijijijij 共回答了14个问题 | 采纳率78.6%
Windows:文都是
Mobile:膜拜而
1年前

相关推荐

android线性布局,如何居中?
android线性布局,如何居中?
我刚学的,下面是垂直线性布局.
为什么我的第二个btn不能够垂直且水平居中,为什么这些属性不能够见名知义,这样设置哪里错了?出来的效果只是显示水平居中而以.
垂直居中的效果我能做得出来,也是误打误撞做出来的,只是不知道其它方式为什么实现不了?
这些标签,是不是可以继承自动继承上一个标签的属性?
很多属性看帮助文档设置的都没有显示出效果?
这些属性为什么设置这么不符合我们的思考逻辑?
好痛苦啊.
栩如1年前1
gzwangyf 共回答了23个问题 | 采纳率95.7%
给你个清晰的回答.
首先,标签有两种,一个是布局(各种Layout),一个是控件(Button,TextView之类).
上下左右中的位置参数,有:android:gravity ,和 android:layout_gravity.
android:gravity ,是指布局容器,对于自己内部控件的布局方向,在Layout标签描述,作用于Layout内的各个控件.(对内有效)
android:Layout_gravity,是控件自己,在布局容器的布局方向,在控件标签描述,只对自己在布局容器位置有效.(对外有效)
继承什么的…… 我还从来没考虑过~
Android手机如何获得与基站的距离?如何得到TA值.
Android手机如何获得与基站的距离?如何得到TA值.
如果用的是电磁波传播及衰弱时间方式求的,怎么获取手机与基站的电磁波传播时间?及到达时间差TA.简单说Android手机怎么得到这个TA.
百年好荷1年前1
opiaofu 共回答了14个问题 | 采纳率92.9%
TA值是手机测量值,类似RxLev、RxQual等参数值,这个和Android系统无关.这些测量值需要和手机生产商联系,并获得手机参数获得办法.
这样做可以把一个普通手机做成测试手机.
android的log中没有输出
android的log中没有输出
package mars.activity;
import java.util.ArrayList;
import java.util.HashMap;
import android.app.Activity;
import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleAdapter;
public class Activity06 extends ListActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ArrayListlist=new ArrayList();
HashMap map1=new HashMap();
HashMap map2=new HashMap();
HashMap map3=new HashMap();
map1.put("user_name", "zhangsan");
map1.put("user_ip", "192.168.0.1");
map2.put("user_name", "lisi");
map2.put("user_ip", "192.168.0.2");
map3.put("user_name", "wangwu");
map3.put("user_ip", "192.168.0.3");
list.add(map1);
list.add(map2);
list.add(map3);
SimpleAdapter listAdapter=new SimpleAdapter(this,list,R.layout.user,
new String[]{"user_name","user_ip"},new int[]{R.id.user_name,R.id.user_ip});
setListAdapter(listAdapter);
}
protected void onListItemClick(ListView l,View v,int position,long id){
super.onListItemClick(l, v, position, id);
System.out.println("id-------"+id);
System.out.println("position-------"+position);
}
}
vjnapba1年前1
luorongyou 共回答了19个问题 | 采纳率89.5%
android Log没有输出,一般都是没有选择好设备,或者链接出现一点问题. 可以尝试,在DDMS点击自己虚拟机设备, 再 reset adb (那个倒三角按钮,下拉菜单有). 然后可能Logcat,就猛刷日志了…… 应该不是设置了 filter ...
英语翻译英语翻译 ERROR:can't bind to android market service on this
英语翻译
英语翻译
ERROR:can't bind to android market service on this device
tygege1年前3
lwsh 共回答了16个问题 | 采纳率87.5%
错误:此设备无法连接安卓商城服务.
android 取得listview中item的值
android 取得listview中item的值
publicvoid UpdataKehulist()
{
// 获取数据库的Cursor
Cursor cur = m_MyDataBaseAdapter.fetchKehuData();
miCount = cur.getCount();
if (cur = null && cur.getCount() >= 0)
{
ListAdapter adapter = new SimpleCursorAdapter(this,
android.R.layout.simple_list_item_2,
// 数据库的Cursor对象
cur,
// 从数据库的NAME和YINGSHOUKUAN两列中取数据
new String[] {DBKehuAdapter.KEY_NAME,DBKehuAdapter.KEY_YINGSHOUKUAN },
// 对应的Views
newint[] { android.R.id.text1,android.R.id.text2 });
/* 将adapter添加到m_ListView中 */
kehuListView.setAdapter(adapter);
//编写listview被选中的事件
kehuListView.setOnItemClickListener(new OnItemClickListener() {
publicvoid onItemClick(AdapterView arg0,View arg1,
int arg2,long arg3) {
// 于对选中的项进行处理.这里我想知道选中的item的NAME和YINGSHOUKUAN的值,求教怎么弄?
}
});
}
}
ddc200811年前1
蓝天__白云 共回答了17个问题 | 采纳率88.2%
TextView tvLoc= (TextView) arg1.findViewById(android.R.id.text1);
应该是这样吧,主要看text1和text2是什么控件,相应改变TextView就行
the import android.os.Handler conflicts with a type defined
the import android.os.Handler conflicts with a type defined in the same file package
package test.com;import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;//这里不行
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class Handler extends Activity { /** Called when the activity is first created.*/
private Button startButton = null;
private Button endButton = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
startButton = (Button)findViewById(R.id.startButton);
endButton = (Button)findViewById(R.id.endButton);
startButton.setOnClickListener(new StartButtonListener());
endButton.setOnClickListener(new EndButtonListener());
}
class StartButtonListener implements OnClickListener{
@Override public void onClick(View v) {
// TODO Auto-generated method stub
handler.post(updateThread);
}
}
class EndButtonListener implements OnClickListener{
@Override public void onClick(View v) {
// TODO Auto-generated method stub
handler.removeCallbacks(updateThread);
}
}
Handler handler = new Handler();
Runnable updateThread = new Runnable(){
@Override public void run() {
// TODO Auto-generated method stub
System.out.println("UpdateThread");
handler.postDelayed(updateThread,3000);
}
};
}
zz啤酒1年前1
黎明cdy 共回答了18个问题 | 采纳率77.8%
...你定义一个和android Handler同名的类干嘛?
你定义的类换个名字就OK
英语翻译AndroidMain articles:Android (operating system) and Goog
英语翻译
Android
Main articles:Android (operating system) and Google Chrome OS
Google's Linux-based Android operating system has been targeted by manufacturers for the tablet space following its success on smartphones due to its open nature and support for low-cost ARM systems much like Apple's iOS.In 2010,there have been numerous announcements of such tablets.[21] However,much of Android's tablet initiative comes from manufacturers as Google primarily focuses its development on smartphones and restricts the App Market from non-phone devices.[22] There is,moreover,talk of tablet support from Google coming to its web-centric Chrome OS.[23][24] Some vendors such as Motorola are delaying deployment of their tablet computers until 2011,after Android is reworked to include more tablet features.[25][26] Android 3.0 (Honeycomb) is the latest version of the Android platform that is optimized specifically for devices with larger screen sizes,mainly tablets.Android is the software stack for mobile devices that includes operating system,middleware and key applications.
MeeGo
Main articles:Maemo and MeeGo
Nokia entered the tablet space with the Nokia 770 running Maemo,a Debian-based Linux distribution custom-made for their Internet Tablet line.The product line continued with the N900 which is the first to add phone capabilities.Intel,following the launch of the UMPC,started the Mobile Internet Device initiative,which took the same hardware and combined it with a Linux operating system custom-built for portable tablets.Intel co-developed the lightweight Moblin operating system following the successful launch of the Atom CPU series on netbooks.
小吉11年前2
abc0602 共回答了19个问题 | 采纳率89.5%
Android
安卓
Main articles: Android (operating system) and Google Chrome OS
主要条款:安卓(操作系统)和谷歌操作系统
Google's Linux-based Android operating system has been targeted by manufacturers for the tablet space following its success on smartphones due to its open nature and support for low-cost ARM systems much like Apple's iOS.
谷歌的Linux基础安卓操作系统为平板空间制造商认准证明成功智能手机由于其开放性质和支持低成本的手臂系统就像苹果的网路作业系统.
In 2010, there have been numerous announcements of such tablets.[21] However, much of Android's tablet initiative comes from manufacturers as Google primarily focuses its development on smartphones and restricts the App Market from non-phone devices.[22] There is, moreover, talk of tablet support from Google coming to its web-centric Chrome OS.[23][24] Some vendors such as Motorola are delaying deployment of their tablet computers until 2011, after Android is reworked to include more tablet features.[25][26] Android 3.0 (Honeycomb) is the latest version of the Android platform that is optimized specifically for devices with larger screen sizes, mainly tablets.
到2010年,已经有很多公告这样的药片.[21]然而,许多机器人的药片主动来了从制造商谷歌主要着重发展对智能手机与限制了市场的应用程序non-phone设备.(22)有,而且,说话片谷歌接近尾声的支持web-centric铬操作系统.(23)[24]有些厂商如摩托罗拉拖延的部署片的计算机直到2011年,在返工机器人是要有更多的药片特征.[25][26]机器人3.0(蜂窝)是最新的版本的Android平台,专门为设备优化大屏幕尺寸,主要药片.
Android is the software stack for mobile devices that includes operating system, middleware and key applications.
机器人软体的堆栈,为移动设备,包括操作系统、中间件、主要的应用.
MeeGo
MeeGo
Main articles: Maemo and MeeGo
主要条款:Maemo和MeeGo
Nokia entered the tablet space with the Nokia 770 running Maemo, a Debian-based Linux distribution custom-made for their Internet Tablet line.
诺基亚进入片空间与诺基亚770运行Maemo Debian-based Linux分布,为自己的电脑从互联网定制片线.
The product line continued with the N900 which is the first to add phone capabilities.
该生产线,继续N900一增加电话能力.
Intel, following the launch of the UMPC, started the Mobile Internet Device initiative, which took the same hardware and combined it with a Linux operating system custom-built for portable tablets.
英特尔、证明推出这款UMPC,开始移动互联网设备采取主动,它把同样的硬件,结合与Linux操作系统定制为便携式的药片.
Intel co-developed the lightweight Moblin operating system following the successful launch of the Atom CPU series on netbooks.
英特尔取得操作系统证明轻量化Moblin原子发射成功netbooks CPU系列.
android问题java.lang.ClassCastException:android.widget.ImageBu
android问题java.lang.ClassCastException:android.widget.ImageButton cannot be cast to android.wid
软件生成跑出这句话:Caused by:java.lang.ClassCastException:android.widget.ImageButton cannot be cast to android.widget.ToggleButton
在以下布局的情况下能运行的:
到我把ImageButton的位置稍微移了一下:
android:layout_x="186dp"
android:layout_y="112dp"
就会抛出错误了:Caused by:java.lang.ClassCastException:android.widget.ImageButton cannot be cast to android.widget.ToggleButton
以为初学者,
a3141591年前1
游走在天海无涯 共回答了16个问题 | 采纳率93.8%
这个异常是类型转换异常,ImageButton不能转换成ToggleButton,绝对布局时候控件应该是不能覆盖的把,你一移动就把ToggleButton覆盖了,感觉你要把ImageButton 转换成ToggleButton(当然,这是不能转换的),所以会报异常.
我只是给点提示,回答的对不对是另外说的啊
android:layout_alignWithParentIfMissing="true"是什么意思
jiasbo1年前1
moon_spa 共回答了19个问题 | 采纳率94.7%
ndroid:layout_centerHrizontal 水平居中
android:layout_centerVertical 垂直居中
android:layout_centerInparent 相对于父元素完全居中
android:layout_alignParentBottom 贴紧父元素的下边缘
android:layout_alignParentLeft 贴紧父元素的左边缘
android:layout_alignParentRight 贴紧父元素的右边缘
android:layout_alignParentTop 贴紧父元素的上边缘
android:layout_alignWithParentIfMissing 如果对应的兄弟元素找不到的话就以父元素做参照物
英语翻译Welcome to the Android SDK!The Android SDK archive initi
英语翻译
welcome to the android sdk!
the android sdk archive initially contains only the basic sdk tools.it does
not contain an android platform or any third-*** libraries.in fact,it
doesn't even have all the tools you need to develop an application.
in order to start developing applications,you must install the platform-toolsand at least one version of the android platform,using the sdk manager.
platform-tools contains build tools that are periodically updated to support new
features in the android platform (which is why they are separate from basic
sdk tools),including adb,dexdump,and others.
to install platform-tools,android platforms and other add-ons,you must
have an internet connection,so if you plan to use the sdk while
offline,please make sure to download the necessary components while online.
to start the sdk manager,please execute the program "sdk manager.exe".
from the command-line you can also directly trigger an update by
executing:
toolsandroid.bat update sdk --no-ui
tip:use --help to see the various command-line options.
for more information,please consult the android web site at
坏的光的爷爷11年前1
alex139084 共回答了20个问题 | 采纳率95%
用谷歌在线翻译,翻译完调下语序就行
com.android.backup.confim英文怎样翻译成汉语
yyd_xiaoruo1年前1
王东军 共回答了13个问题 | 采纳率92.3%
这个是一个网址,反过来写的,用在标记程序的出处。
不需要翻译。
android怎么读
andytiny12191年前1
qwer0011 共回答了20个问题 | 采纳率85%
android 英['ændrɔɪd] 美[ˈænˌdrɔɪd]
n.机器人;基于Linux平台的开源手机操作系统,主要使用于便携设备.目...
名词复数:androids
[例句]Android is google inc.'s operating platform.
安卓是谷歌公司的处理平台.
Android-system-recovery<3e>翻译中文是什么意思啊?
人在后海边1年前1
andykillertwo 共回答了14个问题 | 采纳率28.6%
安卓系统恢复
单句改错:Do you want to join a android football team
西兰花21年前1
bisonshift 共回答了14个问题 | 采纳率92.9%
a→an
Android-system-recovery翻译中文是什么意思啊?
khaki81年前1
清风丝竹 共回答了11个问题 | 采纳率100%
安卓系统恢复
Wei shen me wo de dian nao de Android shu ru fa yu yan zhong
Wei shen me wo de dian nao de Android shu ru fa yu yan zhong mei you zhong wen
在陌生人中间作客1年前3
yikan 共回答了21个问题 | 采纳率85.7%
wo dong ni .
qing cai na .!
Hello,everbody.My name is Liu Yan .I am 321 model android. .
Hello,everbody.My name is Liu Yan .I am 321 model android. .
Hello,everbody.My name is Liu Yan .I am 321 model android. I serve for the LiFamily and I look after their libary.My job is to store all the books which they borrow from their school or friends in my brain.Of course my brain is as lager as a mountain so work like that is no trouble to me.I really eat books just as people eat food.The Lis has a child who needs me remember all his school textbooks so I can do his homework for him.He just gives me the information on the subject,that has to be done and the page numbers,and I get on with it when he enjoys himself with his friends.Sometimes I didn't think it is right to do his homework for him——it's somewhat cheating.帮忙改出文中的十个错误,先行谢过了!
P水中鱼Q1年前1
hh树AAA 共回答了15个问题 | 采纳率100%
I serve for the LiFamily and I look after their libary.(serve for--serve,serve是及物的)
Of course my brain is as lager as a mountain (larger——large,但我不确定你是不是打错了)
Lis has a child who needs me remember all his school textbooks so I can do his homework for him.(needs后面加to)
He just gives me the information on the subject,that has to be done .(that改成which,that不能引导非限定)
Sometimes I didn't think it is right to do his homework for him——it's somewhat cheating.(didn't——doesn't)
下面几个是我不太确定的
My job is to store all the books which they borrow from their school or friends in my brain.(borrow——borrowed)
Of course my brain is as lager as a mountain so work like that is no trouble to me.(trouble——problem,如果larger真打错了的话)
就这些了,别的没看出来,但整篇文章读来觉得都不顺,应该还有错.如果是试卷中的改错题的话,个人觉得这道题出的很一般~个人水平有限,
Android FragmentTabHost 切换报错,log如下:
Android FragmentTabHost 切换报错,log如下:
07-07 17:55:10.523:E/AndroidRuntime(15863):java.lang.IllegalStateException:The specified child already has a parent.You must call removeView() on the child's parent first.
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.view.ViewGroup.addViewInner(ViewGroup.java:3461)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.view.ViewGroup.addView(ViewGroup.java:3332)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.view.ViewGroup.addView(ViewGroup.java:3277)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.view.ViewGroup.addView(ViewGroup.java:3253)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.support.v4.app.NoSaveStateFrameLayout.wrap(NoSaveStateFrameLayout.java:40)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:915)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.support.v4.app.FragmentManagerImpl.attachFragment(FragmentManager.java:1264)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:672)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1444)
07-07 17:55:10.523:E/AndroidRuntime(15863):x05at android.support.v4.app.FragmentManagerImpl$1.run(FragmentManager.java:429)
generallin1年前3
伊丹娜唯 共回答了17个问题 | 采纳率100%
关于异常“The specified child already has a parent.You must call removeView"的解决以及产生的原因
andy the android的翻译
lifesteal1年前3
xycandy36 共回答了21个问题 | 采纳率90.5%
andy是人名,这里做动词用,表达一种Andy这个人经常的一些行为或习惯发生在机器人(android)身上
用英文造句带上android的
osborne1年前1
niupeng19850320 共回答了22个问题 | 采纳率68.2%
Are you using an android phone
-------------------------------------
如果我的答案对你有帮助的话请采纳~
如果有疑问的话请评论~
Android中的SDK Manager.exe打开以后一闪而过,还有Android and Sdk manager打开
Android中的SDK Manager.exe打开以后一闪而过,还有Android and Sdk manager打开以后是空白一片.
下面显示的问题描述是:Error: Unable to read AVDs: Unable to get the Android SDK home directory.
Make sure the environment variable ANDROID_SDK_HOME is set up.
jdk,eclipse,还有adt都装好了,都是新的,不知道这种情况下该怎么办,寻求高手的帮助.
工5271年前1
surperes 共回答了12个问题 | 采纳率91.7%
重新下载sdk吧 ,你的sdk下的是官方的吗,可能里面缺少了什么文件了
英语翻译其次就是设计友好的用户界面,文中不仅用到了android系统提供的控件,还用到了因为各种需求而自定义的控件.接着
英语翻译
其次就是设计友好的用户界面,文中不仅用到了android系统提供的控件,还用到了因为各种需求而自定义的控件.
接着选定数据的存储方式,文***用到了sqlite3,sharedpreferences及文件存储.
最后对整个系统进行了相关的测试,使整个系统的稳定性得到了提升.
通过开发基于google android 的rss阅读器,了解了google android 移动平台的开发过程和特性以及rss的相关技术.
babyfan07221年前2
嘎嘎tingting 共回答了8个问题 | 采纳率100%
The next is the design of friendly interface.The article not only mentioned the controls offered by Android,also the customized controls based on various demand.Then the storage methods were chosen,and sqlite3,SharedPreferences,as well as file storage were included in the article.Eventually,the whole system was tested,which improved stability of the system.Through developing RSS reader based on Google android,we are able to understand development processes and features,of Google android——the mobile platform——as well as related technology of RSS.专业翻译找Q⑨①〇①⑧〇〇⑧③
android 开发 Intent的intent.putExtra问题:请问可以把数据传入自己当前所在的Activity
android 开发 Intent的intent.putExtra问题:请问可以把数据传入自己当前所在的Activity中么?
代码如下:
int id=1;
int point=1000;
public class MillionaireGame extends Activity{
x05 Intent intent=getIntent();
x05 String ids=intent.getStringExtra("idchange");
x05 if(ids==null){
x05 x05id=1;
x05 x05 x05}else{
x05 x05 x05x05id=Integer.parseInt(ids);
x05 x05 x05}
x05
x05 String points=intent.getStringExtra("pointchange");
x05 if(points==null){
x05 x05point=1000;
x05 x05 x05}else{
x05 x05 x05x05point=Integer.parseInt(points);
x05 x05 x05}
Intent i_intent=new Intent(MillionaireGame.this,MillionaireGame.class);
i_intent.putExtra("id",id);x05x05x05x05x05
i_intent.putExtra("point",point);
startActivity(i_intent);
}
上面idchange是id pointchange是point 刚我粘贴错了
中间的代码和Intent没什么关系了 就没写,主要是想 第一次进入时id=1 然后的id 就是根据操作返回相应的值
Intent传之前做了一些判断if(flag){id++,point++}else{id--,point--} 应该和这没关系 执行就报错说 String ids=intent.getStringExtra("id"); 空指针
是应该 int ids=intent.getIntExtra("id",id); 因为putExtra 放入的是 int类型的
htm_731年前1
路太黑 共回答了26个问题 | 采纳率84.6%
解决了就好 ,还有你代码写的看的蛋疼啊,你上面的代码应该是写在onCreate里面的吧?
应该写清楚啊
android_sec是什么意思
第六街蚂蚁1年前1
俞志远 共回答了14个问题 | 采纳率85.7%
android
名词:(科幻小说中的)机器人
形容词:
1.有人类特征的
2.(指骨盘)角形窄口的
3.阳性的,男性的,雄性的
Android
n.安卓系统(Google开发的基于Linux平台的手机操作系统)
android,名词,直译为(科学幻想小说中的)机器人或译为人造人,男性样的.Android同时也是Google于07年11月5日宣布的Google自己研发的手机平台操作系统的名称.该平台基于开源软件Linux,由操作系统、中间件、用户界面和应用软件组成,号称是首个为移动终端打造的真正开放和完整的移动软件
com.android.settings是什么意思
目前还亏1年前1
bennana 共回答了21个问题 | 采纳率100%
com.android.settings 是 Android中“设置”的程序文件,千万别删哦~
在android中使用讯飞的语音引擎会把数字读成英语就是 "1"读成"one" 这个怎么解决
风在发端的少年1年前1
fgder 共回答了20个问题 | 采纳率85%
你用的这个语言库不对吧!这个是第三方的jar包,你只是调用,而不能改写他的语言输出啊!你从新下个jar包试试,不然看看讯飞第三方jar包的添加文档看看里面有没有这个语言的变量设置!
英语翻译As a reminder android open source project is covered und
英语翻译
As a reminder android open source project is covered under GNU GPL v2 and to stay in compliance with GPL..
封装天使的潘多拉1年前0
共回答了个问题 | 采纳率
英语翻译I can return the Android but honestly you will see that
英语翻译
I can return the Android but honestly you will see that it will not compensate.The Brazilian postal will charge almost the value of the android speaker with the shipping.One proposal,you sell me another by half of the value.Trust on me.My nick on ebay is marcodamis.See my qualifications,I'm a good buyer .Ok
几及急1年前5
yideng18 共回答了10个问题 | 采纳率90%
我可以退回安卓(手机或者平板,就是他买的那个安卓设备,这里简称安卓),但是老实得说这样无法解决赔偿和损失问题.巴西邮政会收取一定的邮资,几乎等于这个安卓音响的本身价值.我有个提议,你可以半价再卖给我一个.请相...
unfortunately,the process android.process .acore has stopped
unfortunately,the process android.process .acore has stopped.
slmov1年前1
肴来不虚 共回答了16个问题 | 采纳率100%
不幸的是,安卓的一个核心过程过程已停止.
帮我修改一下这句话.(Android 是品牌,IMCC 是公司名,我想造成的意思是买Android,去IMCC,所以应该
帮我修改一下这句话.
(Android 是品牌,IMCC 是公司名,我想造成的意思是买Android,去IMCC,所以应该怎么写才好?)
Buy Android
Go IMCC
我想弄的是一句标语!

Think Android,
Think IMCC!
Buy Android
Go IMCC
这句话我有翻错吗?
进来就郁闷1年前3
神话时代7 共回答了23个问题 | 采纳率95.7%
Do you want to buy android?
GO IMMC!
android Viewpager 控件,在滚动的时候,出现多的一页。
android Viewpager 控件,在滚动的时候,出现多的一页。

问下:viewpage 左右滑动。

1.当只有这一页的时候。左右滑动当然不行的。



2.当我点击第三个“自定义”,多添加几个图标



3.这样返回之后 viewpage就有两页了。


4、然后问题出来了。

当我再次点击“自定义”取消掉新添加的3个图标,然后点击返回(那么就应该只有一页,不能左右滑动了) 但是出现如下的情况:


我向左滑动,出现了第二页。但是,滑不到第二页去,当我离开,它又自动弹到第一页。


在描述一下问题: 当我向左滑动,看到了第二页出来了。 但是无法把第二页的全部显示出来,当我的手松开之后,自动回退到第一页


下面是我的代码




wdfcn5201年前1
KIKIXIA 共回答了28个问题 | 采纳率100%
具体原因还不大清楚,你试试直接new一个adapter然后set给他,而不是notify
android,listView的一行我想放两个textView,第一个占尽量多的位置,怎么写?
android,listView的一行我想放两个textView,第一个占尽量多的位置,怎么写?
就是我每一行放俩textView,左右分布,第二个宽度是50sp,第一个(左边的那个)占剩下的所有空间.
然后我放了一个线性layout上去,指定水平排列,然后给第一个textView加上android:weight="1",没效果.应该怎么写呢?
dbhdfht1年前1
qma325 共回答了18个问题 | 采纳率83.3%
1.使用tablelayout,定义成两列,即每行显示两个textview,每列的宽度可以自定义.
2.使用LinearLayout,即LinearLayout套LinearLayout ,外层采用垂直布局,每一行也需要一个LinearLayout ,定义成水平布局.
3.使用gridview也能搞定.
Android系统手机的“高级任务管理器”VS “Advanced Task Killer”,比较比较?
Android系统手机的“高级任务管理器”VS “Advanced Task Killer”,比较比较?
我用的是Android 1.5版本的MOTO ME501
“高级任务管理器”和“Advanced Task Killer”(不是TasKiller哦)
都是程序管理的软件,前者比较大后者比较小这我知道,具体是想让用过有经验的机油说说,这两款软件功能上有什么区别?哪个更好用而不会错杀一些从系统程序?有什么优缺点?
“高级任务管理器”英文叫“Advanced Task Manager”,现在最新版本是4.0.1--167KB安装后300多K
“Advanced Task Killer”最新版本是Advanced Task Killer Pro汉化版1.7.6--43KB安装后96KB
一楼的,这两款软件都可以不进入程序就可以快速关闭后台程序的功能~~
三楼的网友你好,TasKiller我用过,杀进程会杀到我的手机有时会反应不过来,还会黑屏,我是不敢再用了……
南极黑人1年前1
寂莫小时工 共回答了24个问题 | 采纳率87.5%
一句话,高级任务管理器有的Advanced Task Killer不一定有,Advanced Task Killer有的高级任务管理器都有
Android中,动态创建控件B,并设置该控件在A控件之下
Android中,动态创建控件B,并设置该控件在A控件之下
比如动态生成一个TextView1和TextView2,然后设置TextView2在TextView1下面
寻路者凯1年前1
langde 共回答了27个问题 | 采纳率92.6%
先生成一个LinearLayout,把加载模式设置成为竖直加载“vertical”,再按照顺序往LinearLayout添加TextView1,TextView2。
进程android process
qianbi3391年前1
mafei1417 共回答了25个问题 | 采纳率84%
安卓系统的手机中的“通讯录”的进程.必要的进程.
如果结束或者意外,手机电话功能将严重受影响,以致完全失效!
非常重要的一个进程哦!
希望可以帮到你!
进程android.process.acore是干什么的?是否可以关闭?关闭之后有什么影响呢?今天,安趣小编就为大家普及一下Android系统中的进程小知识,如果您正打算关闭这个进程,在关闭之前先听听小编为您做的一些分析吧.
  首先,进程android.process.acore是什么?简单来说,他就是安卓手机系统中代表通讯录的进程,如果这个进程关闭掉的话,您的手机电话功能就无法使用了.因此,如果您不是打算拿手机当MP4来用的话,建议您还是保留这个进程吧.
  那么,如果您已经删除了该进程,导致手机无法打电话了,又该如何解决呢?比较快捷的方法就是重启手机,系统重启之后这些进程会重新运行的.如果不行的话,您可以尝试让手机恢复出厂设置试试看,一般都可以完美解决的.
ich habe folgende Fragen zu den Android 4.2 Smartphones:
ich habe folgende Fragen zu den Android 4.2 Smartphones:
1 .Funktionieren die Smartphones zu 100% einwandfrei in Deutschland?
2.Klappt die Verbindung mit 3G wirklich in jedem Smartphones?
3.Lässt sich das ganze Smartphone zu 100% auf Deutsch umstellen?
4.Lassen sich im Google Play Store alle Anwendungen einwandfrei und ohne Probleme installieren?
5.Kann man die Smartphones problemlos mit einem Laptop verbinden,um beispielsweise Musiktitel auf das Smartphone zu laden?
6.Was hat es sich mit dem Rooting auf sich?Was ist das?Wozu wird das benötigt?
7.Muss ich mit irgendwelchen unangenehmen Beeinträchtigungen beim Umgang mit den Smartphones rechnen?
8.Lohnt sich der Kauf bei Ihnen?
填鸭混混1年前1
lyjddm 共回答了18个问题 | 采纳率100%
我有以下几个问题关于安卓4.2智能手机:
这个智能手机百分之百在德国可以使用吗?
每个智能手机都可以3G链接吗?
可以设置手机语言100%德语吗?
所有Google Play Store的应用都可以吗?没有下载问题吧?
这个智能手机可以和手提连接吗?(例如:加载音乐主题在这智能手机上)
rooting是routing吗?第一个问题有点奇怪诶.大概就是:这智能手机配上路由具备什么功能?那是什么?什么时候有用?
我必须计算料想到在用这个手机接电话时会不同程度对耳朵造成损失吗?
和您的这个交易合算吗?
Android中ViewBinder是什么,
宁丫头1年前1
waki99 共回答了16个问题 | 采纳率93.8%
Android中使用Binder进行进程间通讯.ViewBinder应该是一个Binder类,上次应用调用到这个类,这个类再调用底层相应的库.
BlackBerry To Make Their Devices Android Compatible这句话是什么意思?
BlackBerry To Make Their Devices Android Compatible这句话是什么意思?应该怎么翻译?
shzcw1年前2
ttfly 共回答了18个问题 | 采纳率100%
黑莓公司的移动设备将会兼容安卓系统
新闻标题,那个to就表示将来时了
The goal of Android is to create a huge installed base for d
The goal of Android is to create a huge installed base for developers to take advantage of 翻译、
亚马逊1年前2
耳东六日 共回答了17个问题 | 采纳率100%
安卓的目标是建立一个巨大的安装数据库,使开发人员可以从中受益.
com.yulong.android.weatherwidget是什么意思
xiaoguihoho1年前2
YummyoYummy 共回答了13个问题 | 采纳率92.3%
尊敬的用户你好,这个是安卓里面,系统自带的应用程序.
android 除法运算保留两位小数
android 除法运算保留两位小数
3/2=1.50;用Java 怎么写出来?
jclx81591年前1
春天的梧桐雨 共回答了18个问题 | 采纳率83.3%
  BigDecimal bg = new BigDecimal(f);
  double f1 = bg.setScale(2,BigDecimal.ROUND_HALF_UP).doubleValue();
  System.out.println(f1);
F是1.5 F1是1.50
android如何保留小数点后x位数字
moneytang1年前1
summer115 共回答了17个问题 | 采纳率94.1%
static long round(double a) Returns the closest long to the argument.
static int round(float a) Returns the closest int to the argument
精确的,是这样.
/**
* 提供精确的小数位四舍五入处理.
*
* @param v
* 需要四舍五入的数字
* @param scale
* 小数点后保留几位
* @return 四舍五入后的结果
*/
public static double round(Double v, int scale) {
if (scale < 0) {
throw new IllegalArgumentException("The scale must be a positive integer or zero");
}
BigDecimal b = null == v ? new BigDecimal("0.0") : new BigDecimal(Double.toString(v));
BigDecimal one = new BigDecimal("1");
return b.divide(one, scale, BigDecimal.ROUND_HALF_UP).doubleValue();
Android开发中menu.add(1,0,0,R.string.reply)里四个参数分别代表什么含义啊
wahw20061年前1
wala0823 共回答了24个问题 | 采纳率95.8%
第一个int类型的group ID参数,代表的是组概念,你可以将几个菜单项归为一组,以便更好的以组的方式管理你的菜单按钮.
第二个int类型的item ID参数,代表的是项目编号.这个参数非常重要,一个item ID对应一个menu中的选项.在后面使用菜单的时候,就靠这个item ID来判断你使用的是哪个选项.
第三个int类型的order ID参数,代表的是菜单项的显示顺序.默认是0,表示菜单的显示顺序就是按照add的显示顺序来显示.
第四个String类型的title参数,表示选项中显示的文字.
求英语作文my android.急需.80字左右.带翻译
rocket_home1年前3
yzh0723 共回答了21个问题 | 采纳率90.5%
i used to like symban operating cellphone system,but now android take its plalce in the smart phone market.look ,now ,most smart phone's system is android.why could it be so there are some advantages below.firstly ,android systems is very simple to use.moreover,this system is newly created so it is eyecatching.last but not the lest,android system is better than others cellphone syestem.
android:空指针异常代码如下:package com.test;import java.io.ByteArrayO
android:空指针异常
代码如下:
package com.test;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;
public class MainActivity extends Activity {
x05private Button but;
x05private ImageView img;
x05private EditText et;
x05private readImg myReadImg;
/** Called when the activity is first created.*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
but=(Button)findViewById(R.id.but);
et=(EditText)findViewById(R.id.et);
img=(ImageView)findViewById(R.id.img);
but.setOnClickListener(new OnClickListener() {
x05x05x05
x05x05x05@Override
x05x05x05public void onClick(View v) {
x05x05x05x05// TODO Auto-generated method stub
x05x05x05x05String path=et.getText().toString();
x05x05x05x05try {
x05x05x05x05x05byte data[]=myReadImg.read(path);
x05x05x05x05x05Bitmap bitmap=BitmapFactory.decodeByteArray(data,0,data.length);
x05x05x05x05x05img.setImageBitmap(bitmap);
x05x05x05x05} catch (Exception e) {
x05x05x05x05x05// TODO Auto-generated catch block
x05x05x05x05x05e.printStackTrace();
x05x05x05x05x05Toast.makeText(MainActivity.this,"加载失败",2000);
x05x05x05x05}
x05x05x05x05
x05x05x05x05
x05x05x05}
x05x05});
}
private class readImg
{
x05private static final String TAG="readImg";
x05public byte[] read (String path) throws Exception
x05{
x05x05InputStream input;
x05x05ByteArrayOutputStream outStream=new ByteArrayOutputStream();
x05x05URL url=new URL(path);
x05x05HttpURLConnection conn=(HttpURLConnection)url.openConnection();
x05x05conn.setConnectTimeout(5000);
x05x05conn.setRequestMethod("GET");
x05x05if(conn.getResponseCode()==200)
x05x05{
x05x05x05input=conn.getInputStream();
x05x05x05byte b[]=new byte[1024];
x05x05x05int len=0;
x05x05x05while((len=input.read(b))!=-1)
x05x05x05{
x05x05x05x05outStream.write(b,0,len);
x05x05x05x05Log.i(TAG,"test");
x05x05x05}
x05x05x05return b;
x05x05}
x05x05x05return null;
x05x05
x05x05
x05x05x05
x05x05
x05}
}
}
//错误行:
byte data[]=myReadImg.read(path);
chenlu131年前2
云师 共回答了18个问题 | 采纳率77.8%
private readImg myReadImg = new myReadImg();
首字母为L的英文食物名据百科说 android 的开发代号是 从 1.0 5.0 是从首字母 K 组成的 食物名称(谷歌
首字母为L的英文食物名
据百科说 android 的开发代号是 从 1.0 5.0 是从首字母 K 组成的 食物名称(谷歌内部都是吃货啊~),我想知道一下那L开头的英文食物名有啥?
iori84yi1年前1
mikelei168 共回答了23个问题 | 采纳率78.3%
首字母为L的食物名称:
lettuce(莴苣),Lima beans(青豆),lemon(柠檬),lime(酸橙),liver(肝脏),lentil(扁豆),lobster(龙虾),lamb(羊肉),linguine(意大利面条),leek(韭菜),lasagna(烤宽面条),legume(豆类),lox(熏鲑鱼)
android启动时出现The application has stopped unexpectedly.
android启动时出现The application has stopped unexpectedly.
android启动时出现The application 视频播放器(process cn.tcjt.play)has stopped unexpectedly.
logcat如下:
ERROR/AndroidRuntime(849):ERROR:thread attach failed
ERROR/AndroidRuntime(876):Uncaught handler:thread main exiting due to uncaught exception
12-02 08:57:47.807:ERROR/AndroidRuntime(876):java.lang.RuntimeException:Unable to start activity ComponentInfo{cn.tcjt.play/cn.tcjt.play.MainActivity}:android.view.InflateException:Binary XML file line #23:Error inflating class android.widget.ImageButton
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2454)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2470)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at android.app.ActivityThread.access$2200(ActivityThread.java:119)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1821)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at android.os.Handler.dispatchMessage(Handler.java:99)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at android.os.Looper.loop(Looper.java:123)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at android.app.ActivityThread.main(ActivityThread.java:4310)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at java.lang.reflect.Method.invokeNative(Native Method)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at java.lang.reflect.Method.invoke(Method.java:521)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):at dalvik.system.NativeStart.main(Native Method)
12-02 08:57:47.807:ERROR/AndroidRuntime(876):Caused by:android.view.InflateException:Binary XML file line #23:Error inflating class android.widget.ImageButton
12-02 08:57:47.807:ERROR/AndroidRuntime(876):
iii1231年前1
酷凝 共回答了24个问题 | 采纳率83.3%
Unable to start activity ComponentInfo{cn.tcjt.play/cn.tcjt.play.MainActivity}:android.view.InflateException:Binary XML file line #23:Error inflating class android.widget.ImageButton
Log上看是你xml里解析到这里出错了,你先看看你的xml文件.
如果确认没错,也许是Eclipse或你编译的时候编译没有同步,刷新下项目再编译一次
android 中的ADT是不是模拟器的意思?
lc潇潇雨歇1年前1
在职31 共回答了17个问题 | 采纳率88.2%
ADT是Android Development Tools的缩写,它是集成到Eclipse上的一个插件,能够提供一个强大的集成开发环境来开发Android应用.
这是Android官方网站的解释,绝对权威.
iOS+Android原生开发什么意思?
温柔的麦芒1年前1
hx9958 共回答了20个问题 | 采纳率95%
原生(native)开发一般是指用原生开发语言开发,原生开发语言就是开发整个系统时使用的编程语言.对于iOS来说就是Objective C,对于Android来说...不太好说,因为Android用的Linux内核是用C开发的,中间层的库是用C/C++开发的,但应用程序框架和应用程序都是用"Java"开发的,这个系统就是用一堆开源的工程拼起来的,真不太好说哪种语言算是它的原生开发语言.