Demo:
1)MainActivity.java:
package com.venky.searchonwebdemo;
3)Download this Project Click Here
1)MainActivity.java:
package com.venky.searchonwebdemo;
import
android.app.Activity;
import
android.app.SearchManager;
import
android.content.Intent;
import
android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle
savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent it = new Intent(Intent.ACTION_WEB_SEARCH);
it.putExtra(SearchManager.QUERY, "venkoolit");
startActivity(it);
}
}
2)Add this permission:
<uses-permission android:name="android.permission.INTERNET"/>
3)Download this Project Click Here
No comments:
Post a Comment