我想在https://play.google.com/store/apps/details?id=ae.dubaiairports
中创建主页图标动画我知道如何添加动画更改主页图标,例如
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item
android:drawable="@drawable/app_icon"
android:duration="3200" />
<item
android:drawable="@drawable/app_icon_second_state"
android:duration="300" />
</animation-list>
我可以从代码中更改图标大小,例如
icon = (ImageView) findViewById(android.R.id.home);
FrameLayout.LayoutParams iconLp = (FrameLayout.LayoutParams) this.icon
.getLayoutParams();
iconLp.topMargin = iconLp.bottomMargin = 0;
this.icon.setLayoutParams(iconLp);
现在尝试将这两种或任何其他方式结合起来完成这项工作。谢谢!