本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- luxurioust
- lzyfn123
- ajinn
- wjianwei666
- daizj
- ranbuijj
- 喧嚣求静
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- ssydxa219
- lstcyzj
- flashsing123
最新文章列表
android2.3 api demo 学习系列(21)--App/Notification/Incoming Message
现在我们开始学习android的Status Bar Notifications相关内容
1、首先我们来实现一个Notification:在status bar添加一个图片和信息,并让手机震动。用户打开status bar看到更详细的信息,点击该Notification打开一个activity
首先我们来看实现代码:
protected void showNotification() ...
android2.3 api demo 学习系列(20)--App/Menu
现在来学习下menu的相关知识:
1、只有文字的菜单配置:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.c ...
android2.3 api demo 学习系列(19)--App/Intent and Launcher Shortcuts
第一个demo:Intent,根据指定的类型,枚举出所有符合条件的activity,让用户选择
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("audio/*");
startActivity(Intent.createChooser(intent, "Sel ...
android2.3 api demo 学习系列(18)--App/Dialog
今天主要学习Dialog:
1、一般的dialog
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Are you sure you want to exit?")
.setCancelable(false)
.setPos ...
linux下android的开发正确识别真机调试
linux下不需要安装驱动,只需要配置相应的规则就可以。
首先、确定手机usb连接正常并开启开发调试功能,在linux下使用/sbin/isusb查看usb连接状态:
[root@localhost angie]# /sbin/lsusb
Bus 001 Device 005: ID 18d1:4e12 Google Inc. Nexus One Phone (Debug)
Bus 001 ...
android2.3 api demo 学习系列(17)--App/Alarm/AlarmController and Alarm Service
本次学习将apidemo中得两个demo:AlarmController and Alarm Service合并到一起学习
AlarmController主要实现单次alarm事件和循环alarm事件
Alarm Service 主要实现利用循环alarm事件启动service(不介绍service,后续到相关demo再深入学习)
1、AlarmController主要是利用Pendin ...
android2.3 api demo 学习系列(16)--App/Activity/Translucent and Blur activity
本次同样是将apidemo中得两个demo合并起来学习:Translucent and Translucent Blur
Translucent 展示的是对activity透明的处理
Translucent Blur不同之处是activity后面的信息会模糊化处理
1、Translucent 的处理主要是style和Theme来实现
//manifest中定义activity的 ...
android2.3 api demo 学习系列(15)--App/Activity/SetWallpaper
本次示例我们整合了apidemo里面的两个demo:SetWallpaper and Wallpaper
demo:SetWallpaper 主要是获取用户系统的壁纸,并随机颜色过滤后再设置为壁纸
demo:Wallpaper 主要展示使用壁纸作为activity背景的使用(使用用户设定的壁纸 request api level 10 or lower)
下面我们开始
1、 定义layout ...
android2.3 api demo 学习系列(14)--App/Activity/Screen Orientation
下面我们来学习下Screen Orientaiton的demo。
1、首先我们在values下面新建文件arrays.xml(用来在下拉列表中显示)
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Used in app/Screen Orie ...
android2.3 api demo 学习系列(13)--App/Activity/Save & Restore
前面文章android2.3 api demo 学习系列(8)--App/Activity/Preference State已经介绍了如何保存ui的状态,本次学习的demo实现同样的功能只是实现的方法不一样。文章8中使用的是SharedPreferences和Activity的Onpause()、Onresume()方法结合使用保存ui的状态。本次使用的是onSaveInstanceStat ...
android2.3 api demo 学习系列(12)--App/Activity/Reorder Activitys
Reorder Activitys Demo主要是实现打开activity的方式的改变。本次demo涉及到三个activity : ReorderOne、ReorderTwo、ReorderThree。
按照默认的方式执行startActivity,三个activity依次压入stack中:
这个时候ReorderThree如果还是按照默认的方式打开ReorderOne(前提:manifes ...
android2.3 api demo 学习系列(11)--App/Activity/Redirection
APIDEMO里面的redirection示例本身并没有新技术,里面用到的知识点在前面的几个文章中都已涉及到:
SharedPreferences
startActivityForResult
redirection demo主要展示的是根据不同的条件跳转到特定的activity
里面使用到的几个关键点
1、SharedPreferences
//SharedPrefere ...
android2.3 api demo 学习系列(10)--App/Activity/RecevieResult
在先前的文章 activity之间跳转传值 已经学习过这方面的内容,接下来实现这个demo就简单多了;
1、layout配置文件(一个现实结果的text 一个获取结果的按钮)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http: ...
android2.3 api demo 学习系列(9)--App/Activity/QuickContactsDemo
现在我们来学习如何使用Content Provider来访问android的contacts数据库。
1、布局配置
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/re ...
android2.3 api demo 学习系列(8)--App/Activity/Preference State
android保存数据有很多种方式,其中最简单的就是使用SharedPreferences。Shared Preferences存储的是key/value键值对。支持的数据类型为:boolean、long、float、int、string、stringset。SharedPreferences在保存UI的state上最为常用方便。(application之间不能使用SharedPreferences ...