android.widget.TextView#startAnimation ( )源码实例Demo

下面列出了android.widget.TextView#startAnimation ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

/**
 * Start Loop animation on given list of characters
 */
public long applyLoopAnimation(List<TextView> targetList) {
    long duration = (long) (CHARACTER_ANIM_DURATION * 5f);
    for (final TextView target : targetList) {
        AnimationSet set = new AnimationSet(true);
        if (headerLoopAnim == HeaderLoopAnim.ZOOM) {
            addLoopScaleAnimations(duration, set);
        } else if (headerLoopAnim == HeaderLoopAnim.FADE) {
            addLoopFadeAnimations(duration, set);
        }
        target.startAnimation(set);
    }

    // loop anim iteration
    currentLoopIteration = (currentLoopIteration + 1) % headerLoopAnimIteration;
    return (long) ((duration * 2.1f) + 300);
}
 
源代码2 项目: ToDay   文件: ToDayStateFragment.java
/**
 * Adds completed time to an overflow variable overTime.
 *
 * Resets progress bar, begins a new timer with the
 * @param minsToExtend
 */
public void extendTime(int minsToExtend) {
    overTime = overTime + elementTimer.getTimeFinishedInMilliSecs();
    int millisToExtend = AppUtils.minsToMillis(minsToExtend);


    progress = AppUtils.millisToSecs(millisToExtend);

    progressBar.setMax(progress);
    progress = progressBar.getMax();
    progressBar.setProgress(progress);

    elementTimer= new ElementTimer(millisToExtend, 1000);
    startTimerOnUi();

    Animation fadeout = AnimationUtils.loadAnimation(getActivity(),android.R.anim.fade_out);
    TextView notFinished = (TextView) getView().findViewById(R.id.fragment_fe_not_finished);
    notFinished.startAnimation(fadeout);
    notFinished.setVisibility(View.INVISIBLE);
}
 
源代码3 项目: ToDay   文件: ToDayStateFragment.java
/**
 * Produces animation, sets text to finish
 */
@Override
public void onFinish() {
    if (activityStateFlag.equals(AppConstants.FS_NOTIFICATION_ACTIVE)) {
        mNotifyMgr.notify(
                AppConstants.FLOW_STATE_NOTIFICATION_ID,
                mNotify
                        .setContentText(
                                getString(R.string.fs_task_finish_msg)
                        )
                        .setDefaults(Notification.DEFAULT_VIBRATE | Notification.DEFAULT_LIGHTS)
                        .build()
        );
    }
    progressBar.setProgress(0);
    Animation fadeInAnimation = AnimationUtils.loadAnimation(getContext(), android.R.anim.fade_in);
    timeDisplay.setText(getString(R.string.fs_task_finish_msg));
    timeDisplay.setAnimation(fadeInAnimation);

    TextView notFinished = (TextView) getView().findViewById(R.id.fragment_fe_not_finished);
    notFinished.setVisibility(View.VISIBLE);
    notFinished.startAnimation(fadeInAnimation);
}
 
源代码4 项目: Floo   文件: WebActivity.java
@Override
@SuppressLint("SetJavaScriptEnabled")
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_web);
  WebView webView = (WebView) findViewById(R.id.web_view);
  String url = getIntent().getStringExtra(URL);
  if (url == null && getIntent().getData() != null) {
    url = getIntent().getData().getQueryParameter(URL);
  }
  if (url == null) {
    finish();
  }
  webView.setWebViewClient(new InnerWebViewClient());
  webView.getSettings().setJavaScriptEnabled(true);
  webView.loadUrl(url);

  loading = (TextView) findViewById(R.id.loading);
  Animation animation = new ScaleAnimation(1.0f, 1.2f, 1.0f, 1.2f,
      Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
  animation.setRepeatMode(Animation.REVERSE);
  animation.setRepeatCount(Animation.INFINITE);
  animation.setDuration(500);
  loading.startAnimation(animation);
  setTitle(url);
}
 
源代码5 项目: mollyim-android   文件: VerificationCodeView.java
@MainThread
public void append(int value) {
  if (index >= codes.size()) return;

  setInactive(containers);
  setActive(containers.get(index));

  TextView codeView = codes.get(index++);

  Animation translateIn = new TranslateAnimation(0, 0, codeView.getHeight(), 0);
  translateIn.setInterpolator(new OvershootInterpolator());
  translateIn.setDuration(500);

  Animation fadeIn = new AlphaAnimation(0, 1);
  fadeIn.setDuration(200);

  AnimationSet animationSet = new AnimationSet(false);
  animationSet.addAnimation(fadeIn);
  animationSet.addAnimation(translateIn);
  animationSet.reset();
  animationSet.setStartTime(0);

  codeView.setText(String.valueOf(value));
  codeView.clearAnimation();
  codeView.startAnimation(animationSet);

  if (index == codes.size() && listener != null) {
    listener.onCodeComplete(Stream.of(codes).map(TextView::getText).collect(Collectors.joining()));
  }
}
 
源代码6 项目: APDE   文件: EditorActivity.java
protected void hideCharInserts() {
if (!(keyboardVisible && charInserts)) {
	// No need to hide them if they're already hidden
	return;
}

TextView messageView = findViewById(R.id.message);
HorizontalScrollView charInsertTray = findViewById(R.id.char_insert_tray);

View buffer = findViewById(R.id.buffer);
View sep = findViewById(R.id.toggle_char_inserts_separator);
View wrapper = findViewById(R.id.toggle_wrapper);

toggleCharInserts.setImageResource(messageType != MessageType.MESSAGE ? R.drawable.ic_caret_left_white : R.drawable.ic_caret_left_black);
toggleProblemOverview.setImageResource(messageType != MessageType.MESSAGE ? R.drawable.problem_overview_white_unfilled : R.drawable.problem_overview_black_unfilled);

int total = buffer.getWidth() - sep.getWidth() - wrapper.getWidth();

RotateAnimation rotate = new RotateAnimation(180f, 360f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setInterpolator(new AccelerateDecelerateInterpolator());
rotate.setRepeatCount(0);
rotate.setDuration(200);

messageView.startAnimation(new ResizeAnimation<LinearLayout>(messageView, 0, buffer.getHeight(), total, buffer.getHeight()));
charInsertTray.startAnimation(new ResizeAnimation<LinearLayout>(charInsertTray, ResizeAnimation.DEFAULT, ResizeAnimation.DEFAULT, 0, ResizeAnimation.DEFAULT));
toggleCharInserts.startAnimation(rotate);

charInserts = false;
  }
 
源代码7 项目: SimpleChatView   文件: SimpleChatManager.java
private void showTipsAnimation(TextView newsView) {
    AlphaAnimation alphaAnimation = new AlphaAnimation(1.0f, 0.1f);
    alphaAnimation.setDuration(1100);
    alphaAnimation.setRepeatMode(Animation.RESTART);
    alphaAnimation.setRepeatCount(Animation.INFINITE);
    newsView.startAnimation(alphaAnimation);
}
 
源代码8 项目: NewFastFrame   文件: SplashActivity.java
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_splash_main);
    StatusBarUtil.setTranslucentForImageViewInFragment(this, 0, null);
    time = findViewById(R.id.tv_activity_splash_main_time);
    TextView title = findViewById(R.id.tv_activity_splash_main_title);
    Animation animation = AnimationUtils.loadAnimation(SplashActivity.this, R.anim.splash_top_in);
    animation.setAnimationListener(this);
    title.startAnimation(animation);
}
 
源代码9 项目: Modularity   文件: MainActivity.java
/**
 * 显示Toolbar的退出tip
 */
public void showExitTip() {
    TextView view = (TextView) findViewById(R.id.titlebar_text_exittip);
    view.setVisibility(View.VISIBLE);
    Animation a = AnimationUtil.getTranslateAnimation(0f, 0f, -getToolbar().getHeight(), 0f, 300);
    view.startAnimation(a);
}
 
源代码10 项目: Modularity   文件: MainActivity.java
/**
 * 显示Toolbar的退出tip
 */
public void showExitTip() {
    TextView view = (TextView) findViewById(R.id.titlebar_text_exittip);
    view.setVisibility(View.VISIBLE);
    Animation a = AnimationUtil.getTranslateAnimation(0f, 0f, -getToolbar().getHeight(), 0f, 300);
    view.startAnimation(a);
}
 
源代码11 项目: Modularity   文件: MainActivity.java
/**
 * 显示Toolbar的退出tip
 */
public void showExitTip() {
    TextView view = (TextView) findViewById(R.id.titlebar_text_exittip);
    view.setVisibility(View.VISIBLE);
    Animation a = AnimationUtil.getTranslateAnimation(0f, 0f, -getToolbar().getHeight(), 0f, 300);
    view.startAnimation(a);
}
 
源代码12 项目: android-tv-launcher   文件: AppFragment.java
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = LayoutInflater.from(getActivity()).inflate(R.layout.fragment_app, null);
    mViewPager = (ViewPager) view.findViewById(R.id.app_view_pager);
    pointer = (TextView) view.findViewById(R.id.app_pointer);

    initAnimation();
    pointer.startAnimation(rotation);

    initAllApp();
    mViewPager.setOnPageChangeListener(pageChangeListener);
    return view;
}
 
源代码13 项目: android-apps   文件: MainActivity.java
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setContentView(R.layout.activity_main);
	
	tv1 = (TextView) findViewById(R.id.tv1);
	tv2 = (TextView) findViewById(R.id.tv2);
	tv3 = (TextView) findViewById(R.id.tv3);
	tv4 = (TextView) findViewById(R.id.tv4);
	
	
	if( Build.VERSION.SDK_INT < 11 ){
		RotateAnimation ra = new RotateAnimation(0, 90);
		ra.setDuration(100);
		ra.setFillAfter(true);
		
		tv1.startAnimation(ra);
		tv2.startAnimation(ra);
		tv3.startAnimation(ra);
		tv4.startAnimation(ra);
		
	} else{
		try{
			tv1.setRotation(90);
			tv2.setRotation(45);
			tv3.setRotation(180);
			tv4.setRotation(-90);
		} catch(Exception e){
			e.printStackTrace();
		}
	}
	
	
}
 
源代码14 项目: android-apps   文件: MainActivity.java
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setContentView(R.layout.activity_main);
	
	tv1 = (TextView) findViewById(R.id.tv1);
	tv2 = (TextView) findViewById(R.id.tv2);
	tv3 = (TextView) findViewById(R.id.tv3);
	tv4 = (TextView) findViewById(R.id.tv4);
	
	
	if( Build.VERSION.SDK_INT < 11 ){
		RotateAnimation ra = new RotateAnimation(0, 90);
		ra.setDuration(100);
		ra.setFillAfter(true);
		
		tv1.startAnimation(ra);
		tv2.startAnimation(ra);
		tv3.startAnimation(ra);
		tv4.startAnimation(ra);
		
	} else{
		try{
			tv1.setRotation(90);
			tv2.setRotation(45);
			tv3.setRotation(180);
			tv4.setRotation(-90);
		} catch(Exception e){
			e.printStackTrace();
		}
	}
	
	
}
 
源代码15 项目: YCAudioPlayer   文件: ShareDialog.java
/**
 * show 弹出动画
 * @param textView                      textView
 */
private void showBottomInAnimation(TextView textView) {
    textView.setVisibility(View.VISIBLE);
    textView.startAnimation(AnimationUtils.loadAnimation(mContext, R.anim.share_bottom_in));
}
 
/**
 * Start animations on characters
 */
public long applyTextAnimation(final TextView target) {

    final long duration = (long) (CHARACTER_ANIM_DURATION * 2.1f);

    if (isColorAnimEnable && colorAnimationArray != null) {
        final ValueAnimator colorAnimation = ValueAnimator.ofObject(new ArgbEvaluator(), originalColor, colorAnimationArray[colorIndex]);
        colorAnimation.setDuration(duration);
        colorAnimation.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animator) {
                target.setTextColor((Integer) animator.getAnimatedValue());
            }
        });
        colorAnimation.addListener(new AnimatorListenerAdapter() {
            @Override
            public void onAnimationEnd(Animator animation) {
                super.onAnimationEnd(animation);
                target.setTextColor(originalColor);
            }
        });
        colorAnimation.start();

        // loop though color array
        colorIndex = (colorIndex + 1) % colorAnimationArray.length;
    }

    AnimationSet set = new AnimationSet(true);
    if (headerTextAnim == HeaderTextAnim.ROTATE_CW) {
        ROTATION_ANGLE = 20.0f;
        addTextRotateAnimations(set);
    } else if (headerTextAnim == HeaderTextAnim.ROTATE_ACW) {
        ROTATION_ANGLE = -20.0f;
        addTextRotateAnimations(set);
    } else if (headerTextAnim == HeaderTextAnim.FADE) {
        addTextFadeAnimations(set);
    } else if (headerTextAnim == HeaderTextAnim.ZOOM) {
        addTextZoomAnimations(set);
    }
    target.startAnimation(set);

    // text anim iteration
    currentTextIteration = (currentTextIteration + 1) % headerTextAnimIteration;

    return duration + CHARACTER_ANIM_DURATION;
}
 
源代码17 项目: iMoney   文件: GestureVerifyActivity.java
private void setUpViews() {
    mTopLayout = (RelativeLayout) findViewById(R.id.top_layout);
    mTextTitle = (TextView) findViewById(R.id.text_title);
    mTextCancel = (TextView) findViewById(R.id.text_cancel);
    mImgUserLogo = (ImageView) findViewById(R.id.user_logo);
    mTextPhoneNumber = (TextView) findViewById(R.id.text_phone_number);
    mTextTip = (TextView) findViewById(R.id.text_tip);
    mGestureContainer = (FrameLayout) findViewById(R.id.gesture_container);
    mTextForget = (TextView) findViewById(R.id.text_forget_gesture);
    mTextOther = (TextView) findViewById(R.id.text_other_account);

    String inputCode = mSharedPreferences.getString("inputCode", "1235789");
    // 初始化一个显示各个点的viewGroup
    mGestureContentView = new GestureContentView(this, true, inputCode,
            new GestureDrawline.GestureCallBack() {

                @Override
                public void onGestureCodeInput(String inputCode) {

                }

                @Override
                public void checkedSuccess() {

                    mGestureContentView.clearDrawlineState(0L);

                    Toast.makeText(GestureVerifyActivity.this, "密码正确", Toast.LENGTH_SHORT).show();

                    GestureVerifyActivity.this.finish();
                }

                @Override
                public void checkedFail() {

                    mGestureContentView.clearDrawlineState(1300L);
                    mTextTip.setVisibility(View.VISIBLE);
                    mTextTip.setText(Html.fromHtml("<font color='#c70c1e'>密码错误</font>"));

                    // 左右移动动画
                    Animation shakeAnimation = AnimationUtils.loadAnimation(GestureVerifyActivity.this, R.anim.shake);
                    mTextTip.startAnimation(shakeAnimation);
                }
            });

    // 设置手势解锁显示到哪个布局里面
    mGestureContentView.setParentView(mGestureContainer);
}
 
源代码18 项目: iMoney   文件: GestureEditActivity.java
private void setUpViews() {
    mTextTitle = (TextView) findViewById(R.id.text_title);
    mTextCancel = (TextView) findViewById(R.id.text_cancel);
    mTextReset = (TextView) findViewById(R.id.text_reset);
    mTextReset.setClickable(false);
    mLockIndicator = (LockIndicator) findViewById(R.id.lock_indicator);
    mTextTip = (TextView) findViewById(R.id.text_tip);
    mGestureContainer = (FrameLayout) findViewById(R.id.gesture_container);
    mSharedPreferences = this.getSharedPreferences("secret_protect", Context.MODE_PRIVATE);
    // 初始化一个显示各个点的viewGroup
    mGestureContentView = new GestureContentView(this, false, "", new GestureDrawline.GestureCallBack() {
        @Override
        public void onGestureCodeInput(String inputCode) {
            if (!isInputPassValidate(inputCode)) {
                mTextTip.setText(Html.fromHtml("<font color='#c70c1e'>最少链接4个点, 请重新输入</font>"));
                mGestureContentView.clearDrawlineState(0L);
                return;
            }

            if (mIsFirstInput) {
                mFirstPassword = inputCode;
                updateCodeList(inputCode);
                mGestureContentView.clearDrawlineState(0L);
                mTextReset.setClickable(true);
                mTextReset.setText(getString(R.string.reset_gesture_code));
            } else {

                if (inputCode.equals(mFirstPassword)) {
                    Toast.makeText(GestureEditActivity.this, "设置成功", Toast.LENGTH_SHORT).show();
                    mGestureContentView.clearDrawlineState(0L);
                    GestureEditActivity.this.finish();
                } else {
                    mTextTip.setText(Html.fromHtml("<font color='#c70c1e'>与上一次绘制不一致,请重新绘制</font>"));
                    // 左右移动动画
                    Animation shakeAnimation = AnimationUtils.loadAnimation(GestureEditActivity.this, R.anim.shake);
                    mTextTip.startAnimation(shakeAnimation);
                    // 保持绘制的线,1.5秒后清除
                    mGestureContentView.clearDrawlineState(1300L);
                }
            }

            mIsFirstInput = false;
        }

        @Override
        public void checkedSuccess() {

        }

        @Override
        public void checkedFail() {

        }
    });

    // 设置手势解锁显示到哪个布局里面
    mGestureContentView.setParentView(mGestureContainer);

    updateCodeList("");
}
 
源代码19 项目: FaceT   文件: SplashScreenActivity.java
private void myCustomTextViewAnimation(TextView tv) {
    Animation animation = new TranslateAnimation(0, 0, 480, 0);
    animation.setDuration(3000);
    tv.startAnimation(animation);
}
 
源代码20 项目: FaceT   文件: SplashScreenActivity.java
private void TextViewAnimation(TextView tv) {
    Animation animation = new AlphaAnimation(0, 1);
    animation.setStartOffset(1000);
    animation.setDuration(4500);
    tv.startAnimation(animation);
}
 
 方法所在类
 同类方法