Skip to main content

Home/ Android Dev/ Group items tagged Google

Rss Feed Group items tagged

Vincent Tsao

BlindType, 输入法的下一站天后? | 谷安--谷奥Android专题站 - 0 views

  • 根据 BlindType 团队的说法,BlindType 输入法可以根据你输入时触摸屏幕键盘的位置来判断你所输入的字母,而无需你去边看边打了。目前 BlindType 正在为这一输入方式在 Android 机型上实现而努力
Vincent Tsao

译言网 | 如何发挥 Android 锁定屏幕的潜力 - 0 views

  • Android 的某些功能着实让人喜爱,而另一些尚需改进。我们觉得 Google 应该改进的一个地方就是 Android 的待机锁定屏幕的可用性。Android 的优秀的小工具框架能让它在一瞥之间提供不少信息。现在的这个空旷的锁定屏幕一定可以得到增强(这对于平板电脑来说非常合适),而多亏了一些应用程序,Android 可以做到这一点
Vincent Tsao

Nexus Two配置及Android 2.3特性新消息_Google Android_cnBeta.COM - 0 views

  • 另外关于Android 2.3版系统的特性也有了新的消息,在姜饼系统中主要针对电源管理做了优化,可以让手机的续航时间得到大幅度的提升,新系统将提供一个新的拨号界面以及用户界面系统的整体性调整,并加入了视频聊天功能
  • Android开发团队还制作了一个全新的复制粘贴系统(不仅仅是文本的复制粘贴),系统集成的社交网络功能得到完善,Google新推出的WebM视频格式也将会得到支持
Vincent Tsao

Vladimir Kroz blog - 0 views

  •  
    Author of "android-active-record": http://code.google.com/p/android-active-record/
Vincent Tsao

运行 Android 的魅族 M9 参数细节出炉 | 谷安--谷奥Android专题站 - 0 views

  • 魅族M9具体参数曝光: 1GHz三星S5PC110处理器 带有HDMI输出接口 三围59.5 mm x 113 mm x 11mm 三种制式:WCDMA, CDMA, TD-SCDMA 3.6英寸触摸屏幕,720×480分辨率 512MB ROM 512MB RAM Android 2.1 Eclair系统 micro SD/TF扩展 500万像素摄像头 蓝牙/WiFi/GPS/电视输出(HDMI 1.3) 1350毫安电池 价格方面,不送耳机的话大概在255欧元左右,带耳机和8GB内置存储的是290欧元,预计将在今年夏天上市。
  •  
    魅族的用户体验一直都很不错,比较看好这款新的android手机
Vincent Tsao

苹果质疑NPD"Android超越iPhone"统计报告数据不充分_Google Android_cnBeta.COM - 0 views

  • 根据NPD的报告,Android操作系统手机在美国智能手机市场份额达到28%,领先于苹果21%,排在首位的是RIM,份额为36%。 对此,苹果称NPD的数据不完整。公司新闻发言人娜塔莉·哈里森(Natalie Harrison)说:“15万美国用户向在线咨询提交数据,这十分有限,它没有包括全球8500万的iPhone、iPod Touch用户。”娜塔莉·哈里森进一步说,从全球范围来看iPhone销量远胜Android手机,IDC上周发布的数据显示,iPhone拥有全球智能手机市场份额达16.1%,居诺基亚和RIM之后。 娜塔莉·哈里森称:“我们iPhone的销量上个季度创了历史,增长131%,新的iPhone OS 4.0也将于夏季推出,我们一点也没看到竞争对手赶上的迹象。” 从2007年iPhone上市以来,共售出5100万台。
Vincent Tsao

官方的 Adobe Reader for Android 提供下载 | 谷安--谷奥Android专题站 - 1 views

  • Adobe Reader for Android支持多指手势,包括双指缩放、双击缩放、拖动等等,还包括一个新的reflow模式,会将宽度又宽文字又多的页面在小屏幕上也能方便阅读。不过Adobe Reader for Android不支持搜索,不支持那些被密码保护的文档。 在菜市场里搜索Adobe Reader for Android就可以找到。
Vincent Tsao

PhoneGap - 0 views

  • PhoneGap is an open source development framework for building cross-platform mobile apps. Build apps in HTML and JavaScript and still take advantage of core features in iPhone/iPod touch, iPad, Google Android, Palm, Symbian and Blackberry SDKs.
Vincent Tsao

Can I Use this Intent? | Android Developers - 0 views

  • This article describes a technique you can use to find out whether the system contains any application capable of responding to the intent you want to use. The example below shows a helper method that queries the system package manager to determine whether there's an app that can respond to a specified intent. Your application can pass an intent to the method and then, for example, show or hide user options that the user would normally use to trigger the intent.
  • /** * Indicates whether the specified action can be used as an intent. This * method queries the package manager for installed packages that can * respond to an intent with the specified action. If no suitable package is * found, this method returns false. * * @param context The application's environment. * @param action The Intent action to check for availability. * * @return True if an Intent with the specified action can be sent and *         responded to, false otherwise. */public static boolean isIntentAvailable(Context context, String action) {    final PackageManager packageManager = context.getPackageManager();    final Intent intent = new Intent(action);    List<ResolveInfo> list =            packageManager.queryIntentActivities(intent,                    PackageManager.MATCH_DEFAULT_ONLY);    return list.size() > 0;}
  • @Overridepublic boolean onPrepareOptionsMenu(Menu menu) {    final boolean scanAvailable = isIntentAvailable(this,        "com.google.zxing.client.android.SCAN");    MenuItem item;    item = menu.findItem(R.id.menu_item_add);    item.setEnabled(scanAvailable);    return super.onPrepareOptionsMenu(menu);}
« First ‹ Previous 121 - 140 of 151 Next ›
Showing 20 items per page