mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Tweak animations to use the (Slightly slower) android default animation speed.
Remove the fadeout to make things look a little less weird Make the animations slide in from the edge. (See the aforementioned comment about jankyness) TODO: don't remove the message view until _after_ the animation runs. Before HC, that requires rather a lot more code (writing a whole animationadapter) than it should. TODO: get the messageview to stop jumping to hide the header area as it's displayed.
This commit is contained in:
parent
499e20ef76
commit
3b8421a9a8
@ -1,13 +1,8 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="-50%p"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromXDelta="-100%p"
|
||||
android:toXDelta="0" />
|
||||
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0" />
|
||||
|
||||
</set>
|
@ -1,13 +1,8 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:fromXDelta="50%p"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromXDelta="100%p"
|
||||
android:toXDelta="0" />
|
||||
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fromAlpha="0.0"
|
||||
android:toAlpha="1.0" />
|
||||
|
||||
</set>
|
@ -1,13 +1,8 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="-50%p" />
|
||||
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0" />
|
||||
android:toXDelta="-100%p" />
|
||||
|
||||
</set>
|
@ -1,13 +1,9 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<translate
|
||||
android:duration="200"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="50%p" />
|
||||
android:toXDelta="100%p" />
|
||||
|
||||
<alpha
|
||||
android:duration="200"
|
||||
android:fromAlpha="1.0"
|
||||
android:toAlpha="0.0" />
|
||||
|
||||
</set>
|
@ -200,7 +200,7 @@ public class MessageList extends K9FragmentActivity implements MessageListFragme
|
||||
} else {
|
||||
setContentView(R.layout.message_list);
|
||||
mViewSwitcher = (ViewSwitcher) findViewById(R.id.container);
|
||||
mViewSwitcher.setAnimateFirstView(false);
|
||||
mViewSwitcher.setAnimateFirstView(true);
|
||||
mViewSwitcher.setFirstInAnimation(AnimationUtils.loadAnimation(this, R.anim.slide_in_left));
|
||||
mViewSwitcher.setFirstOutAnimation(AnimationUtils.loadAnimation(this, R.anim.slide_out_right));
|
||||
mViewSwitcher.setSecondInAnimation(AnimationUtils.loadAnimation(this, R.anim.slide_in_right));
|
||||
@ -1356,13 +1356,12 @@ public class MessageList extends K9FragmentActivity implements MessageListFragme
|
||||
private void showMessageList() {
|
||||
mMessageListWasDisplayed = true;
|
||||
mDisplayMode = DisplayMode.MESSAGE_LIST;
|
||||
|
||||
mViewSwitcher.showFirstView();
|
||||
|
||||
removeMessageViewFragment();
|
||||
mMessageListFragment.setActiveMessage(null);
|
||||
|
||||
showDefaultTitleView();
|
||||
removeMessageViewFragment();
|
||||
}
|
||||
|
||||
private void showMessageView() {
|
||||
|
Loading…
Reference in New Issue
Block a user