I have this problem with a Button. It won't open a URL when you click on it. Don't know what's the problem. I would appreciated if somebody would help. Thanks.
public class Tours implements Serializable {
private String mId;
private String mTitle;
private String mYear;
private String mCoord;
public Tours(){}
public Tours(String id, String title, String year, String coord) {
this.mId = id;
this.mTitle = title;
this.mYear = year;
this.mCoord = coord;
}
public String getId() {return mId;}
public void setId(String id) {this.mId = id;}
public String getTitle() {return mTitle;}
public void setTitle(String title) {this.mTitle = title;}
public String getYear() {return mYear;}
public void setYear(String year) {this.mYear = year;}
public String getCoord() {return mCoord;}
public void setCoord(String coord) {this.mCoord = coord;}
}