Reputation: 141
I have a simple android webview app and I want to add zoom in button only,
I added the zoom in button in the graphical layout:
but how can I make it work in the java file ?
Upvotes: 0
Views: 383
Reputation: 2771
In your activity, add an on click listener to your button that zooms in the webview:
findViewById(R.id.zoom_in_btn).setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v)
{
webviewer.zoomIn();
}
});
Upvotes: 1