是否有可用于在两个视图之间转换的所有动画的列表?即缩放,滑动,面部等。
我无法在SDK中找到全面的列表,也无法在Google上搜索。
此外,是否有任何演示应用程序将显示所有这些应用程序,以便我可以评估哪个最适合特定用例?
答案 0 :(得分:2)
无法创建完整的动画列表。你的想象力是可能的动画数量的限制。
您可以使用可用的基本动画(alpha,缩放,平移和旋转)的任意组合在两个视图之间传输。 This可能会对您有所帮助。
答案 1 :(得分:1)
有许多选项可以在视图之间制作动画,其中一些是基本的,如alpha,scale,translate和rotate也有新的这在视图过渡的材质设计概念中引入
在这里你可以找到示例代码的视图动画的材质设计git参考 https://github.com/lgvalle/Material-Animations
您还可以使用动画资源
应用其他动画这是您必须编写的活动代码
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splashscreen);
new Handler().postDelayed(new Runnable() {
public void run() {
/* Create an intent that will start the main activity. */
Intent mainIntent = new Intent(SplashScreen.this,
ConnectedActivity.class);
mainIntent.putExtra("id", "1");
//SplashScreen.this.startActivity(mainIntent);
startActivity(mainIntent);
/* Finish splash activity so user cant go back to it. */
SplashScreen.this.finish();
/* Apply our splash exit (fade out) and main
entry (fade in) animation transitions. */
overridePendingTransition(R.anim.mainfadein,R.anim.splashfadeout);
}
}, SPLASH_DISPLAY_TIME);
}
在res / anim文件夹中添加这两个文件。
slide_in.xml
<?xml version="1.0" encoding="utf-8"?>
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="@android:integer/config_longAnimTime"
android:fromXDelta="100%p"
android:toXDelta="0%p">
</translate>
slide_out.xml
<?xml version="1.0" encoding="utf-8"?>
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="@android:integer/config_longAnimTime"
android:fromXDelta="0%p"
android:toXDelta="-100%p">
</translate>
我希望这将解决您的疑问
答案 2 :(得分:0)
以下是可在XML文件中使用的基本动画的官方文档: https://developer.android.com/guide/topics/resources/animation-resource.html