I need to search in a web page..I developed and android application..in which when the user presses the button the web page wiill be opened but i need the user to enter a keyword and when user press the button that keyword has to serch inside the web page..i am providng my coe here can u pls suggest what i have to do next
Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn1=(Button) findViewById(R.id.button1);
ev = (EditText) findViewById(R.id.editText1);
btn1.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://www.androidaspect.com"));
startActivity(intent);
}
});
}