- 浏览: 385358 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (269)
- FY_UML (3)
- FY_JAVA (12)
- FY_JavaScript脚本 (7)
- FY_JSP (3)
- FY_Tapestry框架 (12)
- FY_Spring框架 (3)
- FY_Manager (5)
- FY_Junit(单元测试) (3)
- SERVER (14)
- FY_Struts2框架 (3)
- FY_SVN (2)
- FY_NoSQL (2)
- FY_jquery_sir (13)
- FY_hibernate_sir (8)
- FY_设计模式_sir (6)
- FY_Extjs_sir (10)
- FY_CI_sir (5)
- FY_Oracle_sir (11)
- FY_MySql_sir (10)
- FY_Hadoop_sir (3)
- FY_SOA_sir (1)
- 中文分词技术 (1)
- FY_Android (52)
- FY_架构 (2)
- FY_PhoneGap (2)
- FY_Webstorm (5)
- FY_Sencha Touch (3)
- HTML5应用快速开发 (1)
- FY_python (0)
- HADOOP (1)
- AI (0)
最新评论
-
antao592:
楼主,HkDataSourceWrapper中的getCurr ...
结合spring jdbc 实现分表分库的数据库访问构思 -
bonait:
不错,看看我的这个怎么样www.zipin168.com
So Easy京东商城 -
chenzheng8975:
...
So Easy京东商城 -
yzhenxing:
我导入demo后少com.google.android.gms ...
google地图demo -
echoaiya:
非常感谢~~
google地图demo
--------------------------------------------线性布局LineLayout----------------------------------
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ff0000"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2"
android:background="#00ff00"
android:text="用户名:" />
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#0000ff"
android:text="200" />
</LinearLayout>
</LinearLayout>
--------------------------------------------框架布局FrameLayout-------------------------------
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/FrameLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff0000"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<TextView
android:layout_width="300dp"
android:layout_height="300dp"
android:layout_weight="1"
android:background="#00ff00"
android:text="100" />
<TextView
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_weight="2"
android:background="#0000ff"
android:text="200" />
</FrameLayout>
--------------------------------------------表格布局TableLayout--------------------------------
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/TableLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="#ff0000"
android:text="1000" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#00ff00"
android:text="2000" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="#0000ff"
android:text="3000" />
</TableRow>
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="#0000ff"
android:text="1000" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#00ff00"
android:text="2000" />
</TableRow>
</TableLayout>
--------------------------------------------相对布局RelativeLayout-----------------------------
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/red"
android:layout_width="150dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:background="#ff0000"
android:gravity="center"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<TextView
android:id="@+id/green"
android:layout_width="150dp"
android:layout_height="100dp"
android:layout_above="@id/red"
android:layout_alignBaseline="@id/red"
android:layout_centerInParent="true"
android:background="#00ff00"
android:text="100" />
<TextView
android:id="@+id/blue"
android:layout_width="50dp"
android:layout_height="100dp"
android:layout_above="@id/red"
android:layout_toLeftOf="@id/green"
android:background="#0000ff"
android:text="200" />
</RelativeLayout>
--------------------------------------------绝对布局AbsoluteLayout-----------------------------
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/AbsoluteLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/red"
android:layout_width="150dp"
android:layout_height="100dp"
android:layout_x="0dp"
android:layout_y="100dp"
android:background="#ff0000"
android:gravity="center"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<TextView
android:id="@+id/green"
android:layout_width="150dp"
android:layout_height="100dp"
android:layout_x="0sp"
android:layout_y="200sp"
android:background="#00ff00"
android:text="100" />
<TextView
android:id="@+id/blue"
android:layout_width="50dp"
android:layout_height="100dp"
android:layout_x="0sp"
android:layout_y="300sp"
android:background="#0000ff"
android:text="200" />
</AbsoluteLayout>
线性布局LineLayout--------------------------------
框架布局FrameLayout------------------------------
表格布局TableLayout-------------------------------
相对布局RelativeLayout----------------------------
绝对布局AbsoluteLayout---------------------------
<!--EndFragment-->
- 下周内容.pdf (2.3 MB)
- 下载次数: 10
- com.ch05.rar (687.5 KB)
- 下载次数: 8
- szFemaleFriends.rar (825.3 KB)
- 下载次数: 19
- 注册_登录_我的资料.rar (563.1 KB)
- 下载次数: 7
发表评论
-
史上最快 Android N(安卓7.0)运行效率暴增至600%
2016-10-15 10:08 928谷歌I/O 2016开发者大会在公司总部正式拉开 ... -
So Easy京东商城
2014-12-10 16:51 1578So Easy京东商城 我和17位小伙伴们 ... -
过期Gallery取代方案horizontalscrollView之菜单导航效果
2014-03-23 16:19 2414效果 ------------------------- ... -
过期Gallery取代方案horizontalscrollView之京东效果
2014-03-23 15:57 3880效果 ------------------------- ... -
过期Gallery取代方案horizontalscrollView之幻灯片效果
2014-03-21 17:33 2621效果 ------------------------- ... -
tabhostandbadgeview
2014-03-19 13:45 1034效果 -------------------------- ... -
Android优秀开源项目大全
2014-03-18 15:17 1983以下是开源项目 1、and ... -
Android分页控件xlistview
2014-03-18 14:51 1673strings.xml ----------------- ... -
过期Gallery取代方案horizontalscrollView之普通画廊
2014-03-17 22:48 2443activity_main.xml ---------- ... -
viewpage
2014-03-17 18:08 1059strings.xml ----------------- ... -
FragmentStatePagerAdapter分页
2014-03-17 17:27 806ViewPager ViewPager 如 ... -
FragmentPagerAdapter与FragmentStatePagerAdapter差异
2014-03-17 17:20 1317简介 平常使用的FragmentPagerAdapter和F ... -
抽屉菜单
2014-03-16 12:51 1844strings.xml ----------------- ... -
px和dip以及sp的区别
2014-03-08 17:01 717显示单位px和dip以及sp的区别 dip: devi ... -
fragment生命周期
2014-03-06 16:59 890Fragment必须被写成可重用的模块。因为fragmen ... -
过期API_AlertDialog
2014-03-02 10:07 1151layout----------------------- ... -
Android_Jni 操作指南
2014-01-10 14:45 948Android_Jni 操作指南 NDK(Nati ... -
各种各样圆形进度条
2013-11-11 16:30 563http://www.apkbus.com/android-1 ... -
红杏出墙__实训版
2013-04-20 18:59 1083红杏出墙__实训版 -
google地图demo
2013-04-09 14:25 3203---------------------------- ...
相关推荐
该资源包含CH03至CH05章节的源码,为开发者提供了丰富的学习素材,旨在帮助他们更好地理解和掌握Android SDK的各种功能和特性。 CH03章节通常会涵盖Android应用的基本架构和组件,例如Activity、Intent、Service、...
《Android SDK开发范例大全(第二版)CH05》是针对Android应用开发的一份重要资源,由清华大学出版社出版。这个压缩包包含了第五章的源代码,为开发者提供了丰富的实践示例,帮助深入理解Android SDK的使用。在这个...
"CH341 Android代码"这个标题暗示了我们即将探讨的是与Android应用程序开发相关的源代码,可能是一个项目、一个库或者一个工具的实现。在这个场景中,CH341可能是项目代号或者是某个硬件接口(如CH341芯片,常用于...
总结来说,"ch05_android开发_"章节着重讲解了Android应用程序中Checkbox、RadioButton和Spinner的使用,这些都是构建用户界面不可或缺的元素。通过ExRadioButton02、ExSpinner01、ExRadioButton01、ExCheckBox02、...
《Android OPhone开发完全讲义源码Ch05》是一份深入探讨Android OPhone平台开发的教程资料,其中包含了第五章的源代码。这个压缩包是开发者和学习者宝贵的资源,帮助他们理解并实践Android OPhone应用的开发过程。...
这份压缩包包含了两个部分,分别是CH04和CH05,它们代表了Android开发中两个关键的学习阶段。 CH04部分可能涉及到Android应用程序的基础构建模块,包括Activity的管理、布局设计、用户界面(UI)元素的使用,以及...
通过这个"ch4apk"项目,初学者可以逐步了解并实践Android应用的开发流程,从创建布局,编写业务逻辑,到打包发布,是一个很好的动手实践机会。同时,对于已有的开发者,这个应用也是一个复习基础概念和技巧的好例子...
"ch08_android开发_"这个标题暗示我们正在探讨Android应用开发的一个章节,可能是一个教程或案例研究,专注于扩展菜单(ExMenu)和扩展上下文菜单(ExContextMenu)的实现。 首先,Android中的Menu主要用于在应用的...
标题中的"CH34xUARTDemo1.zip"表明这是一个与CH34x串口通信相关的示例项目,可能包含了用于演示如何在Android设备上通过CH340芯片与STM32微控制器进行串行通信的代码和驱动程序。CH340是一款常见的USB转串口芯片,常...
4. **资源文件**:在Android应用中,字符串、颜色、布局等通常存放在资源文件中。登录页面的`login.txt`可能是包含用户登录提示信息的文本资源。 5. **Intent和数据传递**:在Android中,Intent用于启动活动或服务...
《Android Ophone开发完全讲义源码Ch23.1》是针对Android Ophone平台进行深入开发学习的重要参考资料。这个压缩包包含三个主要部分:`ch23_hardware`、`ch23_firstwidget`和`ch23_file`,分别对应硬件交互、基础...
对于UI设计,Android使用XML布局文件来定义用户界面元素,而Ch12的源码可能包含多种布局类型(如LinearLayout、RelativeLayout、GridLayout)的实例。开发者可以通过查看这些源码学习如何创建响应式布局,以适应不同...
《Android OPhone开发完全讲义源码Ch14》是一份深入探讨Android OPhone平台开发的教程资料,其中包含了第14章的源代码。在这一章节中,开发者将了解到如何利用Android SDK和OPhone特有的功能来构建高效、功能丰富的...
- ch05_viewstub:ViewStub是一个轻量级的组件,它在布局加载时不占用空间,直到被充实时才占用布局位置,常用于动态加载视图。 - ch05_datetimepicker:可能包含日期和时间选择器的使用,用于让用户选择特定日期或...
在Android开发领域,Android Studio是主流的集成开发环境(IDE),它为开发者提供了丰富的功能来构建高质量的应用程序。本章节将深入探讨如何在Android Studio中使用Button和文字框(EditText和TextView)进行交互式...
综上所述,`ch06_android开发`这个章节主要讲解了`GridView`的使用,包括创建适配器、自定义单元格视图、使用`RelativeLayout`布局以及集成图片播放功能。通过学习这些内容,开发者可以更好地理解和应用`GridView`,...
这个压缩包包含的子文件按章节顺序排列,分别是ch02、ch07、ch06、ch04、ch02(可能是重复或错误)、以及ch05。下面我们将详细探讨这些章节涵盖的Android开发关键知识点。 **第二章:Android系统架构与开发环境搭建...