-
android 提醒小闹钟 例子源码
android 提醒小闹钟 例子源码
- 2014-10-17下载
- 积分:1
-
滑动菜单与片段
你好所有的这个项目是结合使用 android 应用程序片段的滑动菜单的初始屏幕,您可以使用您的编码是已经更改时代码片段,如果不是你太自以为是了别用这个,因为活动并非支持片段。
- 2022-10-26 23:00:03下载
- 积分:1
-
Android 简单播放歌曲功能演示
Android 简单播放歌曲功能演示,播放本地音乐,非网络播放,可播放、暂停,运行效果如截图所示,在编写时,要注意以下代码:
int status = 1;//当前的状态,1没有声音播放 ,2 正在播放声音,3暂停
ImageButton start;//播放、暂停按钮
ImageButton stop;//停止按钮
ActivityReceiver activityReceiver;
int status = 1;//当前的状态,1没有声音播放 ,2 正在播放声音,3暂停
public void onCreate(Bundle savedInstanceState) {//重写的onCreate方法
super.onCreate(savedInstanceState);
setContentView(R.layout.main);//设置当前的用户界面
start = (ImageButton) this.findViewById(R.id.start);//得到start的引用
stop = (ImageButton) this.findViewById(R.id.stop);//得到stop按钮的引用
start.setOnClickListener(this);//为按钮添加监听
stop.setOnClickListener(this);//为按钮添加监听
activityReceiver = new ActivityReceiver();//创建BroadcastReceiver
IntentFilter filter = new IntentFilter();//创建IntentFilter过滤器
filter.addAction("wyf.ytl.update");//添加Action
registerReceiver(activityReceiver, filter);//注册监听
Intent intent = new Intent(this, MyService.class);//创建Intent
startService(intent);//启动后台Service
}
- 2023-08-23 12:30:03下载
- 积分:1
-
ddms 截屏
android ddms截屏,用PC机给android设备发命令截屏,类似手机助手截屏功能。
- 2022-07-05 05:34:33下载
- 积分:1
-
开源中国项目源码
开源中国android项目源码 里面有开源中国项目功能具体实现 可以用来做学习研究
- 2022-03-02 20:54:05下载
- 积分:1
-
自定义五角星组件
自动定义View组件,相当于不同形状的Button.学会这方式后,可以根据自己的要求自定义各种形状的控件。
View定义了绘图的基本操作
基本操作由三个函数完成:measure()、layout()、draw(),其内部又分别包含了onMeasure()、onLayout()、onDraw()三个子方法。具体操作如下:
1、measure操作 2、layout操作 3、draw操作
MainActivity的布局文件:先定义命名空间 xmlns:uview="http://schemas.android.com/apk/res/com.example.myimageview2" (com.example.myimageview2为你
在manifest中定义的包名)
- 2023-04-23 04:25:03下载
- 积分:1
-
全新的购物完整app
里面有 一整套购物的页面 购物登陆 消费 以及订购地址 等等
- 2022-05-21 21:34:39下载
- 积分:1
-
Android_Multi_Tools_1
Pattern unlock all for android
- 2014-08-31 22:50:30下载
- 积分:1
-
jntuk学生总计算器的Android应用程序
这个项目是由自己创建的..dis将用于计算jntuk学生的总数..一般情况下,d学生可能不知道通过分数,他们需要使用计算器来获得聚合结果..dis应用程序对于不想使用计算器的dos非常有用。。
- 2022-08-18 14:08:49下载
- 积分:1
-
android 模仿微博登陆框实例源码
当文字输入时改变图片 仿微博
- 2014-08-22下载
- 积分:1