If you use Android 3.n and higher, it might help googeling for how to hide the ActionBar (instead of TitleBar). The ActionBar is appearently loaded with every UI of the recent versions, even if you do not define it within your code. Am Samstag, 11. August 2012 23:41:51 UTC+2 schrieb user123: > > If it's of interest for somebody, here is the xml of the animation: > > <scale > xmlns:android="http://schemas.android.com/apk/res/android" > android:duration="1000" > android:fromXScale="0" > android:fromYScale="0" > android:pivotX="50%" > android:pivotY="50%" > android:toXScale="1" > android:toYScale="1" > android:fillAfter="true" > /> > > > On Saturday, August 11, 2012 11:20:52 PM UTC+2, user123 wrote: >> >> I defined a scale animation from 0 to 1 for entering activity: >> >> overridePendingTransition(R.anim.scale, 0); >> >> In application tag in Manifest: >> >> android:theme="@android:style/Theme.NoTitleBar" >> >> But I get a black topbar on the entering activity, while it scales... >> looks very ugly since the activity doesn't have this topbar. How do I hide >> it? >> >
-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

