You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
471 B
Java

package com.thinkit.lewebconnect;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class Search extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView textview = new TextView(this);
textview.setText("search view");
setContentView(textview); }
}