Quantcast
Channel: Appcelerator Developer Center Q&A Unanswered Questions 20
Viewing all articles
Browse latest Browse all 8068

Android Window Transition

$
0
0

I need window Transition.

this is example

slide_in_bottom.xml located in platform/android/res/anim

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
    <translate
        android:duration="300"
        android:fromYDelta="+100%p"
        android:toYDelta="0" />
</set>
and I Set Window
activityEnterAnimation: Titanium.Android.R.anim.slide_in_bottom
this will make R.java
public final class R {
    public static final class anim {
        public static final int abc_fade_in=0x7f040000;
        public static final int abc_fade_out=0x7f040001;
        public static final int abc_grow_fade_in_from_bottom=0x7f040002;
        public static final int abc_popup_enter=0x7f040003;
        public static final int abc_popup_exit=0x7f040004;
        public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
        public static final int abc_slide_in_bottom=0x7f040006;
        public static final int abc_slide_in_top=0x7f040007;
        public static final int abc_slide_out_bottom=0x7f040008;
        public static final int abc_slide_out_top=0x7f040009;
        public static final int slide_in_bottom=0x7f04000a;
        public static final int slide_out_bottom=0x7f04000b;
    }
But I can't access Titanium.Android.R.anim.slide_in_bottom and Titanium.App.Android.R.anim.slide_in_bottom

also animation not working.

how can i make this working?


Viewing all articles
Browse latest Browse all 8068

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>