Example usage for android.widget ViewFlipper showNext

List of usage examples for android.widget ViewFlipper showNext

Introduction

In this page you can find the example usage for android.widget ViewFlipper showNext.

Prototype

@android.view.RemotableViewMethod
public void showNext() 

Source Link

Document

Manually shows the next child.

Usage

From source file:com.parse.favourama.ACTLoginSelf.java

public void onClickSignUpInit(View v) {
    CheckBox checkBox = (CheckBox) findViewById(R.id.sign_in_use_email);
    if (checkBox.isChecked()) {
        checkBox.setChecked(false);/*from www  .  ja  v a 2s .  com*/
    }
    ViewFlipper vf = (ViewFlipper) findViewById(R.id.viewFlipper);
    vf.showNext();
    alertMsg.setText("");
    findViewById(R.id.ava_state_container).setVisibility(View.VISIBLE);

    /*Set up the check availability part*/
    ((TextView) findViewById(R.id.ava_state_text)).setText("");
    ((ImageView) findViewById(R.id.ava_state_img)).setImageDrawable(null);
}