Package android.widget

Examples of android.widget.ScrollView


 
  public void onCreate(Bundle saved)
  {
    super.onCreate(saved);
   
    ScrollView scroll = new ScrollView(this);
   
    LinearLayout layout = new LinearLayout(this);
    layout.setOrientation(LinearLayout.VERTICAL);
   
    scroll.addView(layout);
   
    Button close = new Button(this);
    close.setText("Close");
    close.setOnClickListener(this);
    close.setGravity(Gravity.CENTER);
View Full Code Here


      notes.setText(secret.getNote());

      password.requestFocus();
    }

    ScrollView scroll = (ScrollView) findViewById(R.id.edit_layout);
    scroll.scrollTo(0, 0);
  }
View Full Code Here

TOP

Related Classes of android.widget.ScrollView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.