
android apps for absolute beginer
主的器皿
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
(1)The Android Application Framework Overview
The Android Application Framework Broadcast receivers are communication components that receive messages that are sent between the Android operating system and other application components, or betwe原创 2012-11-21 11:19:14 · 607 阅读 · 0 评论 -
(2)SlidingDrawer widget
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <SlidingDrawer android:id="@+id/drawer" androi原创 2013-04-03 16:25:46 · 672 阅读 · 0 评论 -
(6)Content Providers
An Overview of Android Content Providers An Android content provider provides you with access to sharable data structures commonly called databases.The basic procedure is as follows: 1. Get perm原创 2012-11-28 13:46:30 · 721 阅读 · 0 评论 -
(3)Button、Menu and Dialog
(1)ImageButton button1.xml activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layo原创 2012-11-21 07:13:02 · 1253 阅读 · 0 评论 -
(4)graphic resources in android
android.graphics.drawable bitmap is collection of pixels,shape is collection of line drawings.Android supports three bitmap image file formats: PNG, JPEG, and GIF. Truecolor PNG32 images use a full原创 2012-11-22 14:59:54 · 833 阅读 · 0 评论 -
(5)Handling UI events
Handling UI Events via the View Class An event listener is a Java interface in the View class that contains a single callback method to handle that type of user-input event. When you implement a spec原创 2012-11-27 10:33:42 · 566 阅读 · 0 评论 -
(7)Intents
What Is an Intent? Three types:activities, services, and broadcast receivers. Intents can be passed to other applications written by other programmers, allowing them to be connected as modules of e原创 2012-11-29 13:45:37 · 717 阅读 · 0 评论