Set size for AutoCompleteTextView : TextView « UI « Android






Set size for AutoCompleteTextView

    
package app.test;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import android.widget.Button;
import android.graphics.Color;

public class Test extends Activity {
  @Override
  public void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    setContentView(R.layout.main);

    ArrayAdapter<String> monthArray = new ArrayAdapter<String>(this,
        android.R.layout.simple_list_item_1, Months);
    final AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.testAutoComplete);
    textView.setAdapter(monthArray);
    final Button changeButton = (Button) findViewById(R.id.autoCompleteButton);
    changeButton.setOnClickListener(new Button.OnClickListener() {
      public void onClick(View v) {
        changeOption(textView);

      }
    });
    final Button changeButton2 = (Button) findViewById(R.id.textColorButton);
    changeButton2.setOnClickListener(new Button.OnClickListener() {
      public void onClick(View v) {
        changeOption2(textView);

      }
    });
  }

  static final String[] Months = new String[] { "January", "February",
      "March", "April", "May", "June", "July", "August", "September",
      "October", "November", "December" };

  public void changeOption(AutoCompleteTextView text) {
    if (text.getHeight() == 100) {
      text.setHeight(30);
    } else {
      text.setHeight(100);

    }
  }

  public void changeOption2(AutoCompleteTextView text) {
    text.setTextColor(Color.RED);
  }
}
//main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<AutoCompleteTextView android:id="@+id/testAutoComplete"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<Button android:id="@+id/autoCompleteButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Change Layout"/>
<Button android:id="@+id/textColorButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Change Text Color"/>
</LinearLayout>

   
    
    
    
  








Related examples in the same category

1.Add TextView to LinearLayout
2.Using ScrollView to hold a TextView
3.Set text for TextView in xml file
4.Set text for TextView
5.Add TextView and set text
6.Set size for TextView
7.Using 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