Using ScrollView to hold a TextView : TextView « UI « Android






Using ScrollView to hold a TextView

    


package app.Test;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnKeyListener;
import android.widget.TextView;

public class appTest extends Activity {

  private TextView urlText;

  @Override
  public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    urlText = (TextView) findViewById(R.id.text);
    urlText.setOnKeyListener(new OnKeyListener() {
      public boolean onKey(View view, int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_ENTER) {
        
          return true;
        }
        return false;
      }
    });

  }
}

//main.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent">
   <TextView
      android:id="@+id/text"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />
</ScrollView>

   
    
    
    
  








Related examples in the same category

1.Add TextView to LinearLayout
2.Set text for TextView in xml file
3.Set text for TextView
4.Add TextView and set text
5.Set size for TextView
6.Using AutoCompleteTextView
7.Set size for AutoCompleteTextView
8.Fill data to AutoCompleteTextView with ArrayAdapter
9.Create TextView within code
10.Set text Size, color, padding and background for TextView
11.extends TextView to create customized widget
12.RelativeLayout TextView and EditView
13.Using MultiAutoCompleteTextView
14.This is a TextView that is Editable and by default scrollable like EditText without a cursor.
15.AutoCompleteTextView 2
16.AutoCompleteTextView 3
17.Two AutoCompleteTextView
18.MultiAutoCompleteTextView Demo
19.Demonstrates using a LinearLayout background to group related TextViews, EditTexts, and Buttons.
20.Create TextView
21.Append and set text to TextView
22.toast with TextView
23.Format number
24.Auto complete Text view
25.Programmatically load text from an asset and place it into the text view.
26.extends ScrollingMovementMethod