public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        //set variables to hold search control
        final Button button = (Button)
findViewById(R.id.ImageButtonSearch);

        //set new OnClickListener
        button.setOnClickListener(new View.OnClickListener()
        {

                //onClick event
                        @Override
                        public void onClick(View button)
                        {
                                //set variables to hold search term on edittext 
control
                                final EditText txtSearch = (EditText)
findViewById(R.id.EditTextSearch);
                                final String STERM = 
txtSearch.getText().toString();
                                searched(STERM);
                        }
<<ERROR ON "}" BELOW THIS STATES "Multiple markers on this line,
insert ) or ; ">>
        }

    }

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to