You can use the 'checkForCollision' functions, have a look at this example:
http://www.jpct.net/wiki/index.php/Advanced_example
http://www.jpct.net/wiki/index.php/Advanced_example
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
public void logMem() {
DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(0);
df.setMinimumFractionDigits(0);
String sTemp = "RAM allocated: " + df.format(new Double(Runtime.getRuntime().totalMemory()/1048576)) + "MB of " + df.format(new Double(Runtime.getRuntime().maxMemory()/1048576))+ "MB (" + df.format(new Double(Runtime.getRuntime().freeMemory()/1048576)) +"MB free)";
Log.v(TAG, sTemp);
}
Page created in 0.019 seconds with 9 queries.