-
Android System startup process
Android System startup process
- 2019-05-17 09:50:37下载
- 积分:1
-
android 判断双SD卡_CheckDoubleSDCard 例子源码
android 判断双SD卡_CheckDoubleSDCard 例子源码
- 2014-10-01下载
- 积分:1
-
netty IM(服务器/客户端)
netty4 + spring im(服务器/客户端)
- 2023-05-25 19:45:03下载
- 积分:1
-
界面切换Demol
动态加载Fragment1的布局文件
view=inflater.inflate(R.layout.fragment1,container,false);
获取布局上的控件,注意通过view获取
tvinfo=(TextView)view.findViewById(R.id.textView8);
tvinfo.setText("微信");
注意Toast第一个参数上下文
//实例化ArticleModel,调用方法获取网络数据
ArticleModel articleModel=new ArticleModel();
- 2022-03-13 14:58:04下载
- 积分:1
-
android图片旋转、淡入淡出、缩放效果、移动效果示例
android图片旋转、淡入淡出、缩放效果、移动效果示例,先来看下截图的运行效果,单击对应的按钮,即可看到效果,淡入淡出之类的,图片旋转之类的。
图片旋转的代码如下:
rotateAnimation.setDuration(5000);
animationSet.addAnimation(rotateAnimation);
image.startAnimation(animationSet);
淡入淡出效果:
AnimationSet animationSet = new AnimationSet(true);
animationSet.setInterpolator(new AccelerateInterpolator());
AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);
RotateAnimation rotateAnimation =
new RotateAnimation(0, 360,
Animation.RELATIVE_TO_PARENT, 1f,
Animation.RELATIVE_TO_PARENT, 0f);
animationSet.addAnimation(alphaAnimation);
animationSet.addAnimation(rotateAnimation);
alphaAnimation.setDuration(3000);
image.startAnimation(animationSet);
animationSet.setRepeatCount(4);
- 2023-02-06 16:40:04下载
- 积分:1
-
android下创建一个sqlite数据库 - android入门视频32
android下创建一个sqlite数据库 - android入门视频32
- 2015-12-03下载
- 积分:1
-
android 网络图片下载 示例源码
很好的下载图片的工具类,特别是结合listview一起用,废话不多说,直接上源码
- 2014-03-26下载
- 积分:1
-
TravelApp-(1)
一个简单的安卓app应用程序,类似于滴答拼车,但是拼游的,大家可以通过此软件找到一起出游的小伙伴(A simple Android app applications, similar to the ticking carpool, but to fight tour, we can travel together by this software to find a small partner)
- 2020-10-22 16:17:23下载
- 积分:1
-
STM32三菱PLC源码原理图
STM32三菱PLC源码原理图
- 2020-12-05下载
- 积分:1
-
robotium源码
robotium 是 android 自带类 Instrumentation 的一个封装,方便测试人员直接调用封装好的接口,也就是说,实际上我们直接使用Instrumentation 也能够进行自动化测试,但robotium可以简化我们的测试步骤,我们只需要调用某个robotium的API,传几个参数,就等于我们在调用一部分的Instrumentation帮我们实现测试。robotium 就是富二代!!高帅富!!
- 2022-04-20 22:50:28下载
- 积分:1