SuperbookKing

2012年7月29日

10.消息传递之Intent

摘要: Three of the core components of an application — activities, services, and broadcast receivers — are activated through messages, calledintents.Intent 一次对即将执行的操作的抽象描述1 Action 之 打电话发短信(注意添加打电话发短信权限<uses-permission android:name="android.permission.CALL_PHONE" /><uses-permission andro 阅读全文

posted @ 2012-07-29 21:46 SuperbookKing 阅读(189) 评论(0) 推荐(0)
9.用户接口UI布局----View控件的概述之ViewGroup

摘要: 1.LinearLayout 线性布局(主要分为水平和垂直线性布局)android:layout_width="fill_parent"android:layout_height="fill_parent"fill_parent会使得android:layout_weight="1" 分配的比重均衡android:gravity 表示子控件对齐方式或是内容文本的对齐方式// horizontal表示垂直线性布局 <LinearLayout xmlns:android="http://schemas.android.co 阅读全文

posted @ 2012-07-29 20:34 SuperbookKing 阅读(225) 评论(0) 推荐(0)