腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(853)
视频
沙龙
7
回答
如何将相似的方法合并为一种方法
、
、
rotateAnimation
= new
RotateAnimation
(seconds * 6, seconds * 6,
rotateAnimation
.setFillAfter(true);}
RotateAnima
浏览 0
提问于2012-12-05
得票数 0
回答已采纳
1
回答
Android -以编程方式旋转整个屏幕
我即将离开一个项目,并想添加一个小复活节彩蛋到应用程序。我只是想知道,是否可以在一个按钮上旋转整个屏幕360度呢?还是太难了?
浏览 1
提问于2015-06-09
得票数 0
回答已采纳
2
回答
如何在安卓系统中降低
RotateAnimation
的速度
、
、
、
如何降低
RotateAnimation
实例的旋转速度。我使用下面的代码片段来做动画。
rotateAnimation
= new
RotateAnimation
(currentRotation, currentRotation + (360 * 5), Animation.RELATIVE_TO_SELF(10000);
rotateAnimation
.setRepeatCount(Anim
浏览 3
提问于2013-10-29
得票数 3
回答已采纳
1
回答
如何在Android中不使用位图的情况下旋转图像?
、
、
、
捕获的图像存储在横向位置,所以我想将其更改为纵向。我的代码是:Bitmap Output = null; int w = Out.getWidth(); Matrix mtx = new Matrix(); Out
浏览 1
提问于2013-01-09
得票数 2
1
回答
如何使物体无限旋转
、
= nil) {
rotateAnimation
.fromValue= 0.0
rotateAnimation
.duration = durationif let delegate: AnyObject = completionDelegate
浏览 2
提问于2015-04-08
得票数 2
回答已采纳
2
回答
旋转图像视图卡住
、
、
setContentView(R.layout.main);
RotateAnimation
anim = new
RotateAnimation
(0f, 0f,
RotateAnimation
.RELATIVE_TO_SELF, 0.5f,
RotateAnimation
.RELATIVE_TO_SELF
浏览 0
提问于2013-11-17
得票数 0
回答已采纳
1
回答
当滚动的UITableView上重新出现UIView时,动画停止
、
、
、
UITableView的每个单元格中的进度,我正在使用这个函数来动画UIViews: func rotate360Degrees(duration: CFTimeInterval = 1.0) {
rotateAnimation
.fromValue = 0.0
rot
浏览 35
提问于2019-01-25
得票数 0
1
回答
android旋转/连续旋转图像,直到我命令它停止为止
、
、
、
我尝试了一个动画,像这样: Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); refreshBtn.startAnimation(
rotateAnimation
浏览 4
提问于2014-03-13
得票数 0
1
回答
如何在facebook/pop中制作旋转动画?
、
、
我已经搜索了整个互联网关于如何用facebook流行动画制作旋转动画。
浏览 3
提问于2017-05-31
得票数 0
1
回答
Swift :围绕中心点旋转层
我有一个用CAShape Layer创建的以(x,y)为中心的层。我想知道如何围绕它的中心旋转。那么在上面的图片中,我们如何旋转指针呢?CGAffineTransform?或者CABasicAnimation,必须使用什么以及如何使用(语法相同)。
浏览 0
提问于2016-08-01
得票数 0
1
回答
如何使用背景色旋转图像?
RotateAnimation
rotateAnimation
= new
RotateAnimation
( Animation.RELATIVE_TO_SELF, 0.5f);
rotateAn
浏览 1
提问于2013-05-27
得票数 1
1
回答
使用onTouch MotionEvent.ACTION_MOVE移动连续旋转图像视图机器人
、
、
我想要的是下面的图片:
RotateAnimation
rotateanimation
=final ImageView iv = findViewById(R.id.imageView);
RotateAnimation
rotateanimation
= new
Rotat
浏览 2
提问于2017-11-09
得票数 0
回答已采纳
1
回答
视图:使用不同的枢轴链接两个旋转
、
我正在尝试对一个视图应用两种不同的旋转,举个例子:2: 90°pivotX =0 pivotY= 0有没有办法以一种完全独立的方式处理这两次旋转?
浏览 0
提问于2013-04-09
得票数 1
2
回答
Android
RotateAnimation
完成
、
我正在做一个
RotateAnimation
。我开始旋转图像,但我想知道什么时候动画完成。我怎么知道动画什么时候结束? EndPoint, Animation.RELATIVE_TO_SELF(1000);
浏览 4
提问于2015-08-29
得票数 3
回答已采纳
2
回答
如何在Android中制作旋转木马动画?
、
、
我有一些图像,我想让它像旋转木马一样旋转。请让我知道如何在android平台上做,如果有人知道…
浏览 0
提问于2010-12-20
得票数 0
1
回答
如何旋转可绘制的箭头中心
、
newsBody.getVisibility(); Animation animation = new
RotateAnimation
newsBody.setVisibility(View.GONE); Animation animation = new
RotateAnimation
浏览 0
提问于2016-04-10
得票数 0
回答已采纳
4
回答
安卓:如何选择
RotateAnimation
的旋转方向?
、
、
、
在此视频中,您可以看到行为:https://youtu.be/vypZni 下面是用户单击按钮"02“时执行的代码:
RotateAnimation
rotateAnimation
= new
RotateAnimation
(new LinearInterpolator());
rotateAnimation
.setFillAfter(true); test.startAnimation(
浏览 125
提问于2016-09-01
得票数 4
回答已采纳
3
回答
在动画之后查看setBackground时出错
、
、
、
arg0) { setX(finalX);
rotateAnimation
浏览 5
提问于2012-12-19
得票数 7
2
回答
Android
RotateAnimation
未按预期工作
、
、
、
这是我的代码:
rotateAnimation
1.setDuration(2000);
RotateA
浏览 1
提问于2019-03-27
得票数 0
1
回答
保存到数据库时动画不工作吗?
、
、
val
rotateAnimation
=
RotateAnimation
(0.0f, 360.0f, itemView.toggleButton.pivotX, itemView.toggleButton.pivotY)
rotateAnimation
.fillAfter = trueit
浏览 3
提问于2017-10-30
得票数 0
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
热门
标签
更多标签
云服务器
ICP备案
对象存储
云直播
腾讯会议
活动推荐
运营活动
广告
关闭
领券