- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个屏幕,上面有几张图片,其中一张有一个简洁的动画,纵向看起来很棒。
很棒的纵向动画 - rotate_anim_port.png - 在 HERE 中
它在风景中看起来并不那么棒。
横向动画 - rotate_anim_land.png - 在上面。
我正在以这种方式实现偏心旋转动画,因为我有几个具有相同大小的可绘制资源的 imageview 在 frameview 中堆叠在一起,以使它们都保持在相对相同的位置,但能够缩放到任何大小frameview 是。
它看起来很糟糕,因为 RotateAnimation(fromDegrees, toDegrees, pivotXType, pivotXValue, pivotYType, pivotYValue)
基于其 pivotValues 的 View 与 View 内的图像大小不同.在纵向模式下,图像几乎与 View 大小相同,但在横向模式下差异很明显。
我一直在尝试并未能从 View 和其中绘制的图像中获取位置,以用于计算正确的 pivotValues 以传递代码。
这是 Activity 的代码:
package com.namespace;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.view.animation.Animation;
import android.view.animation.LinearInterpolator;
import android.view.animation.RotateAnimation;
import android.widget.ImageView;
public class AnimationDemoActivity extends Activity {
// piviotValues if the view is the exact size of the drawable.
final float pivotXType = 0.3280274656679151f;
final float pivotYValue = 0.5060137457044674f;
private Handler mHandler = new Handler();
ImageView outside, inside;
RotateAnimation anim, anim2;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
outside = (ImageView) findViewById(R.id.imageView1);
inside = (ImageView) findViewById(R.id.imageView2);
outside.setVisibility(ImageView.INVISIBLE);
inside.setVisibility(ImageView.INVISIBLE);
// somewhere in here, code to recalculate pivotValues to adjust for the
// size of the actual view the images are inside of
anim = new RotateAnimation(0, 359, Animation.RELATIVE_TO_SELF,
pivotXType, Animation.RELATIVE_TO_SELF, pivotYValue);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(Animation.INFINITE);
anim.setDuration(2000);
anim2 = new RotateAnimation(0, 359, Animation.RELATIVE_TO_SELF,
pivotXType, Animation.RELATIVE_TO_SELF, pivotYValue);
anim2.setInterpolator(new LinearInterpolator());
anim2.setRepeatCount(Animation.INFINITE);
anim2.setDuration(750);
mHandler.postDelayed(doRotation, 2500);
}
private Runnable doRotation = new Runnable() {
public void run() {
outside.setVisibility(ImageView.VISIBLE);
inside.setVisibility(ImageView.VISIBLE);
outside.startAnimation(anim);
inside.startAnimation(anim2);
}
};
}
这是布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
android:orientation="vertical"
android:padding="10sp" >
<ImageSwitcher
android:id="@+id/imageSwitcher1"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center" >
</ImageSwitcher>
<ImageSwitcher
android:id="@+id/imageSwitcher2"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center" >
</ImageSwitcher>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/dwdg_outside_arrow" >
</ImageView>
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/dwdg_inside_arrow" >
</ImageView>
</FrameLayout>
</LinearLayout>
Here是可运行的 apk - AnimationDemo.apk 和压缩项目 - AnimationDemo.zip
我这样做是不是疯了?我完全忽略了什么吗?做什么?
最佳答案
我想通了。当然,这是一行修复。将属性 android:adjustViewBounds="true"
添加到 ImageViews 使 View 缩小到可绘制资源的大小并使动画正常工作。
关于android - 如何使 android 中的偏心旋转动画在纵向和横向上看起来相似?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9087265/
我遇到了一个让我非常难过的问题。但现在看来这一定是一个普遍的问题,我很惊讶我找不到关于它的另一个问题。 基本上,我的网站上会出现一些图标。我希望它们在每台设备上都显示出大致相同的大小——大致是可触摸的
我是一名 Java 专业人士。现在我喜欢转向其他编程语言。谁能建议我哪种编程语言更容易消化,并且该语言具有 Web 开发功能。我对 Web 开发感兴趣。 最佳答案 C# - 网络开发非常好(只需看看这
我需要为不同的 url 发送不同的响应。但是我正在使用的正则表达式不起作用。 有问题的两个正则表达式是 "/v1/users/[^/]+/permissions/domain/HTTP/" (例
让我描述一下我的问题。有一个输入字符串和一个包含数千个字符串的表。我正在寻找搜索与输入字符串最相似* 字符串的最佳方法。搜索应该返回一个包含 ~10 个建议字符串的列表,按相似度排序。字符串在数据库中
我在使用 crypt() 时遇到问题,如果用户有密码(本例中为 password1),并且他们将其更改为 password2,则散列会返回相同的结果。您可以在此处进行测试:旧链接输入 password
我问这个是因为我发现 XML 在视觉上没有吸引力。我知道 XML 非常有名,很有用,而且它被大多数(如果不是全部)程序员接受为一种非常有用的定义和结构化数据的语言;然而,我真的不觉得盯着它看、看着它或
我有工作需要在 14 天内完成。我有5名 worker 。一天正好需要3个 worker 。每个 worker 最多只能工作 9 天。每个 worker 都有自己的日期偏好,每个 worker 每天都
FileStream 或 DB 句柄类型的对象必须正确关闭,因为它在内部使用 Windows 句柄。同样,Threads 也使用 Windows 句柄吧?线程是否有一些内部机制来释放那些 Window
如果这是非常基本的,请原谅。我一直在尝试遍历行数组中的每个单元格包括标题单元格。我可以在 Nokogiri CSS 选择器中使用 OR 运算符吗? thang= Nokogiri::HTML(IO.r
默认情况下,RichTextFx(顶部控件)看起来不像 TextArea(底部控件): 我找到了一种添加圆角的方法(只需从 modena.css 复制并配置 some styles): .virtua
在 64 位 Java 中,每个对象实例往往包含一个 192-bit header , 包含 类指针, 标志和 锁(每个 64 位)。 这可能会导致小对象的大量内存开销。 尼姆的情况是否类似?用两种语
我正在开发一个具有多个功能(通过 tableview 选择)的应用程序,这些功能几乎都做同样的事情,相似的布局、相似的按钮、相似的输入字段等等。但在我相信它们自己的地方有足够的不同类(class)。每
题目地址:https://leetcode-cn.com/problems/similar-rgb-color/ 题目描述 Inthe following, every capital lette
我正在编写 R 代码,我希望它在“非调试”或“调试”模式下运行。在 Debug模式下,我希望代码打印出运行时信息。 在其他语言中,我通常会有某种打印功能,除非打开标志(用于编译或运行时),否则什么都不
我不明白这个OP接受的答案的一部分: Javascript function scoping and hoisting 作者说: " 此外,在这种情况下, function a() {} 行为与相同
我正在做一个bcmp(&v6_addr1,&v6_addr2,sizeof(v6_addr1)) (gdb) p v6_addr2 $15 = {u = {b = "0\001", '\000' ,
我有一个充满按钮的 Canvas,我将其 ID 存储在字典中。 Canvas 很长,带有垂直滚动条。有一种方法可以自动将 View 定位在给定的按钮上吗? 当使用 Text 时,txt.see(pos
我正在尝试使用 Python 2.6 和 PIL 计算两个图像的相似度(读作:Levenshtein 距离)。 我打算给我们e python-levenshtein用于快速比较的库。 主要问题: 什么
换句话说,php $object->method(); 和 $object->property = 'someValue'; 相当于,js: $object.method(); 和 $object.p
我写了一个简单的函数,它接收实现 .index() 的东西和要检查的字符列表。 我的假设是,由于字符串和元组都是不可变的,因此它们具有相似的性能(或者至少,元组的性能优于列表)。相反,元组似乎等同于列
我是一名优秀的程序员,十分优秀!