随笔分类 -  android源码

摘要:Activity与Service之间交互并播放歌曲,为了方便,我把要播放的歌曲定死了,大家可以灵活改进MService:View Code 1 package com.tiantian.test; 2 3 import android.app.Service; 4 import android.content.Intent; 5 import android.media.MediaPlayer; 6 import android.os.Binder; 7 import android.os.Environment; 8 import android.os.IBinder; 9 import.. 阅读全文
posted @ 2012-03-07 14:04 天天_byconan 阅读(1972) 评论(0) 推荐(0) 编辑
摘要:简述:使用TimePickerDialog来实现设置闹钟分为一次性闹钟和周期性闹钟使用SharedPreferences来储存闹钟的设置信息AlarmClockActivity布局:View Code 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent&quo 阅读全文
posted @ 2012-03-03 13:23 天天_byconan 阅读(3129) 评论(1) 推荐(3) 编辑
摘要:布局:View Code 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent" 5 android:orientation="vertical& 阅读全文
posted @ 2012-03-01 18:44 天天_byconan 阅读(1642) 评论(0) 推荐(1) 编辑
摘要:通过BroadcastReceiver拦截短信转发,技术讨论 大家不要做坏事哦先看布局:View Code 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent&qu 阅读全文
posted @ 2012-03-01 13:32 天天_byconan 阅读(2722) 评论(0) 推荐(2) 编辑
摘要:效果图:思路:用RadioGroup来自定义Tab(当然用其他的ImageButton等也可以实现)mainActivity代码: 1 package com.tiantian.test; 2 3 import android.app.TabActivity; 4 import android.content.Context; 5 import android.content.Intent; 6 import android.content.res.TypedArray; 7 import android.os.Bundle; 8 import android.os.Hand... 阅读全文
posted @ 2012-02-24 11:06 天天_byconan 阅读(7127) 评论(0) 推荐(2) 编辑