
Android官方教程翻译
lxq_xsyu
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android官方教程翻译(1)——创建第一个Android应用
对官方教程的翻译,有自己的亲自实践和截图,我们一起学Android吧,有什么问题可以相互交流翻译 2013-08-07 20:59:13 · 5041 阅读 · 3 评论 -
Android官方教程翻译(4)——启动另一个Activity
Starting Another Activity启动另一个ActivityPREVIOUSNEXTTHIS LESSON TEACHES YOU TO这节课教你1. Respond to the Send Button按钮响应2. Build an Intent 创建一个意图Intent3. Start the Sec翻译 2013-08-08 19:46:57 · 3133 阅读 · 0 评论 -
Android官方教程翻译(3)——创建一个简单的用户界面
Building a Simple User Interface创建一个简单的用户界面PREVIOUSNEXTTHIS LESSON TEACHES YOU TO这节课教你1. Create a Linear Layout创建线性布局2. Add a Text Field添加文本域3. Add String Resources添加S翻译 2013-08-08 17:55:15 · 3105 阅读 · 0 评论 -
Android官方教程翻译(2)——运行第一个程序
Running Your AppPREVIOUSNEXTTHIS LESSONTEACHES YOU TO1. Run on a Real Device2. Run on the EmulatorYOU SHOULD ALSOREAD· Using Hardware Devices· Managing Virtual翻译 2013-08-07 22:04:01 · 3148 阅读 · 0 评论 -
Android官方教程翻译(5)——设置ActionBar
Setting Up the Action Bar设置Action BarPREVIOUSNEXTTHIS LESSONTEACHES YOU TO这节课教你1. Support Android 3.0 and Above Only仅仅支持3.0以上2. Support Android 2.1 and Above 支持2.1以上YOU S翻译 2013-08-08 22:57:03 · 4135 阅读 · 0 评论 -
Android官方教程翻译(6)——添加ActionBar
The action bar allows you to add buttons for the most important action items relating to the app's current context. Those that appear directly in the action bar with an icon and/or text are known as翻译 2013-12-06 14:03:22 · 3500 阅读 · 0 评论 -
设计兼容不同的屏幕尺寸的Android界面
Android的屏幕类型有几百种不同的尺寸,从小型的手机到大型的电视机。因此要使我们的应用程序兼容不同屏幕尺寸,同一个应用就可以提供给更多的用户使用。一、支持不同的屏幕尺寸为了确保布局的灵活性,来适应不同尺寸的屏幕,我们应该使用“wrap_content"来匹配组件的最小尺寸和使用”match_parent"来设置某些视图来匹配父视图的大小。这样设置和直接设置视图大小(如48dip)不同的是该视图翻译 2015-01-21 15:18:30 · 5279 阅读 · 1 评论 -
Android程序测试
一、建立测试环境安装了Android Developer Tools (ADT) 插件的Eclipse将为你创建,构建,以及运行Android程序提供一个基于图形界面的集成开发环境。Eclipse的一项方便的特性是可以自动为你的Android应用项目创建一个对应的测试项目。1、建立一个Android工程(如下,名为AndroidNormalProject)、或者导入已经存在的工程。2、生成一个该工翻译 2015-02-04 23:22:36 · 2068 阅读 · 0 评论