Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import android.net.Uri;
public class Main {
public static boolean isSimilarUri(Uri one, Uri two) {
return one.getHost().equals(two.getHost()) && one.getPath().equals(two.getPath());
}
}