0
showaction = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.0f,
             Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
             -1.0f, Animation.RELATIVE_TO_SELF, 0.0f);
             showaction.setDuration(500);

このメソッド パラメーターの効果は垂直方向の下向きのスライドですが、左から右のスライドに変更したいと考えています。どうやってするの?

4

1 に答える 1

0
showaction = new TranslateAnimation(Animation.RELATIVE_TO_SELF, -1.0f,
             Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
             0.0f, Animation.RELATIVE_TO_SELF, 0.0f);
             showaction.setDuration(500);

ドキュメントから。

于 2012-12-19T08:10:33.880 に答える