Adding the buttons

This commit is contained in:
Joe Bowser
2014-01-14 15:47:01 -08:00
parent 2136cad49a
commit 43f8935541
14 changed files with 30 additions and 16 deletions

View File

@@ -23,7 +23,9 @@ import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.drawable.Drawable;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
@@ -483,7 +485,13 @@ public class InAppBrowser extends CordovaPlugin {
back.setLayoutParams(backLayoutParams);
back.setContentDescription("Back Button");
back.setId(2);
/*
back.setText("<");
*/
Resources activityRes = cordova.getActivity().getResources();
int backResId = activityRes.getIdentifier("ic_action_previous_item", "drawable", cordova.getActivity().getPackageName());
Drawable backIcon = activityRes.getDrawable(backResId);
back.setBackground(backIcon);
back.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
goBack();
@@ -497,7 +505,10 @@ public class InAppBrowser extends CordovaPlugin {
forward.setLayoutParams(forwardLayoutParams);
forward.setContentDescription("Forward Button");
forward.setId(3);
forward.setText(">");
//forward.setText(">");
int fwdResId = activityRes.getIdentifier("ic_action_next_item", "drawable", cordova.getActivity().getPackageName());
Drawable fwdIcon = activityRes.getDrawable(fwdResId);
forward.setBackground(fwdIcon);
forward.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
goForward();
@@ -534,7 +545,10 @@ public class InAppBrowser extends CordovaPlugin {
close.setLayoutParams(closeLayoutParams);
forward.setContentDescription("Close Button");
close.setId(5);
close.setText(buttonLabel);
//close.setText(buttonLabel);
int closeResId = activityRes.getIdentifier("ic_action_remove", "drawable", cordova.getActivity().getPackageName());
Drawable closeIcon = activityRes.getDrawable(closeResId);
close.setBackground(closeIcon);
close.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
closeDialog();