Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

missing animation in R.anim and Progressbar in ImageSwitcher

I like to get the two slide in animation, which are missing I think. how can I do this, anything would be very nice

android.R.anim.slide_in_right
android.R.anim.slide_out_left

I would liek to slide in some pictures the other way around is working

on the other side, is it possible to have an progress bar under the picture which shows how much pictures are left

like image 656
user1966046 Avatar asked Dec 27 '22 11:12

user1966046


1 Answers

All system resources are located in the SDK folder.

Grab the animations you want from

SDK_folder\platforms\android-17\data\res\anim

and place them in your project under res/anim

Then you can use them with

R.anim.anim_name
like image 164
Ole Avatar answered Dec 28 '22 23:12

Ole